/* Main form page styling */
/*
body {
    background-image: url('/api/placeholder/1920/1080');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    margin: 0;
    padding: 0;
    color: #f5f5f5;
    font-family: 'Roboto', sans-serif;
}
*/

.container {
    width: 90%;
    max-width: 1200px;
    margin: 60px auto;
    padding: 40px;
  /*  background-color: rgba(0, 0, 0, 0.8);*/
    background-color: #1d3d45;
    border-radius: 15px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

h1 {
    color: #ffcc00;
    font-size: 42px;
    text-align: center;
    margin-bottom: 30px;
    font-weight: bold;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
}

form {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    color: white;
}

label {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 8px;
    display: block;
}

input[type="text"], 
input[type="number"], 
select {
    width: 100%;
    padding: 10px;
    border: 1px solid #fff;
    border-radius: 8px;
    background-color: rgba(255, 255, 255, 0.9);
    color: #333;
    font-size: 14px;
    margin-bottom: 15px;
}

input[type="text"]:focus, 
input[type="number"]:focus, 
select:focus {
    outline: none;
    border-color: #ffcc00;
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.5);
}

.btns {
    grid-column: 1 / -1;
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btns input[type="submit"],
.btns input[type="reset"] {
    background-color: #28a745;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 120px;
}

.btns input[type="submit"]:hover,
.btns input[type="reset"]:hover {
    background-color: #218838;
    box-shadow: 0 0 15px rgba(0, 255, 0, 0.4);
}

/*
.footer {
    text-align: center;
    margin-top: 50px;
    padding: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
}*/


.footer {
    text-align: center;
    margin-top: 40px;
    padding: 20px;
    background-color: #007bff;
    color: white;
    border-radius: 5px;
}

/* Footer link styles */
.footer a {
    color: white;
    text-decoration: none;
    margin: 0 5px;
    transition: opacity 0.2s ease;
}

.footer a:hover {
    opacity: 0.8;
    text-decoration: underline;
}
   

.btn-preset {
    background-color: #0d6efd;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 16px;
    width: 120px;
}

.btn-preset:hover {
    background-color: #0b5ed7;
    box-shadow: 0 0 15px rgba(13, 110, 253, 0.4);
}


/* Responsive design */
@media only screen and (max-width: 900px) {
    form {
        grid-template-columns: 1fr;
    }

    .container {
        width: 95%;
        margin: 20px auto;
        padding: 20px;
    }
}