.login-page {
    width: 420px;
    padding: 8% 0 0;
    margin: auto;
    border-radius:2px;
}

.form {
    position: relative;
    z-index: 1;
    background: #FFFFFF;
    height:auto;
    margin: 0 auto 50px;
    padding: 30px 35px;
    text-align: center;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
    border-radius:4px;
}

.form input {
    outline: 0;
    background: #f2f2f2;
    width: 100%;
    border: 0;
    margin: 0 0 15px;
    padding: 20px;
    box-sizing: border-box;
    font-size: 18px;
    border-radius:2px;
}
.form input::placeholder{
    color: #999999;
}
.form button {
    text-transform: uppercase;
    outline: 0;
    background: rgb(56, 126, 209);
    width: 100%;
    border: 0;
    padding: 20px;
    color: #FFFFFF;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    margin-top:30px;
    border-radius:2px;
}
.form h1{
    padding:0px;
    margin-top: 10px;
    margin-bottom: 40px;
    color:#333333;
    font-weight: 500;
}
.form h2{
    padding:0px;
    margin-top: 0px;
    margin-bottom: 40px;
    color:#333333;
    font-weight: 500;
}
.form button:hover, .form button:active, .form button:focus {
    background: #333333;
}
a{
    text-decoration: none;
    color: #666666;
}
a:hover{
    font-weight: 500;
}
.form .message {
    margin: 15px 0 0;
    color: #b3b3b3;
    font-size: 12px;
}

.form .message a {
    color: #6495ED;
    text-decoration: none;
}

.error-message {
    color: #D64933;
    font-size: 14px;
    
    font-weight: 600;
}
.dropdown-container {
    position: relative; /* Position context for dropdown */
    width: 100%;
    z-index: 1000; /* Ensure dropdown is above other content */
}

.dropdown-item {
    padding: 5px;
    padding-left: 15px;
    cursor: pointer;
    background-color: white;
    text-align: left;
    width: 100%;
    box-sizing: border-box;
    font-size: 14px;
}

.dropdown-item:hover {
    background-color: #e0e0e0;
}

#dropdown {
    border: 1px solid #ccc;
    overflow-y: auto;
    display: none;
    position: absolute;
    top: 100%; /* Position below input */
    left: 0;
    width: 100%; /* Match width of container */
    background-color: white;
    z-index: 2;
    box-sizing: border-box;
}


button.loading {
    position: relative;
    pointer-events: none;
    opacity: 0.7;
}

button.loading::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 16px;
    height: 16px;
    border: 2px solid #fff;
    border-top: 2px solid #007bff;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

@keyframes spin {
    to {
        transform: translateY(-50%) rotate(360deg);
    }
}