
body {
    font-family: Arial, sans-serif;
    background: linear-gradient(to right top, #0044ff9c, #000000e2);
    background-attachment: fixed;
    margin: 0;
    width: 100%;
    min-width: 40rem;
}

.dropdown{
    background: linear-gradient(to right top, beige, rgb(155, 155, 100));
    padding: 0 0 1rem 0;
    position:fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

h1 {
    color: beige;
    /* padding: 2rem; */
    margin: 2rem auto;
    text-align: center;
    padding-top: 7rem;
}

form {
    background: #d3cece;
    display:flex;
    flex-direction: column;
    padding: 2rem 4rem;
    border-radius: 1rem;
    box-shadow: 2px 2px 10px rgba(0,0,0,0.1);
    width: 50%;
    min-width: 38rem;
    margin: 1rem auto 3rem;
    color: rgb(35, 27, 27);
    font-size: 1.1rem;
    border: 5px solid beige;
}

form input, form select, form textarea {
    background: #fff;
    border: 1px solid #002f5e;
    border-radius: 0.5rem;
    padding: 0.5rem 1rem;
    margin-bottom: 0rem;
    font-size: 1.1rem;
    width: 100%;
    box-sizing: border-box;
}

form input:focus, 
form select:focus, 
form textarea:focus {
    border-color: #007BFF;
    outline: none;
    box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
}

form label {
    font-weight: bold;
    /* margin-bottom: 5rem; */
    padding: 1rem;

}

#submit {
    background-color: #003366;
    display: flex;
    color: #fff;
    padding: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin: 1rem auto;
    font-size: 1rem;
    justify-content: center;
    width: 60%;
    min-width: 200px;
}

#submit:hover {
    background-color: #0055b3;
}

/* Style for the loading message */
#loading_message {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    font-size: 1.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    flex-direction: column;
}

/* Spinner styling */
.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 2s linear infinite;
    margin-top: 10px;
}

/* Animation for the spinner */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

