/* General Styles */
.login-container {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 10%;
}

.login-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border: 3px solid var(--primary-color);
    border-radius: 15px;
    backdrop-filter: blur(8px);
    max-width: 400px;
    width: 100%;
}

h1 {
    font-size: 2.5rem;
    color: var(--secondary-color);
    margin-bottom: 20px;
}

label {
    display: block;
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 5px;
    text-align: left;
}

input {
    width: 100%;
    padding: 10px;
    border: 2px solid var(--primary-color-light);
    border-radius: 8px;
    margin-bottom: 15px;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

/* Button Styles */
.btn {
    width: 100%;
    padding: 12px;
    font-size: 1.2rem;
    background-color: var(--secondary-color);
    color: var(--black);
    font-weight: bold;
    border-radius: 999px;
    border: none;
    cursor: pointer;
    transition: background 0.3s;
    margin-bottom: 10px; /* Add spacing between buttons */
}

/* Specific styling for forgot password button */
#forgot-password-btn {
    margin-top: 5px; /* Additional top spacing */
    background-color: rgba(255, 255, 255, 0.1); /* Different background to distinguish */
    color: var(--white);
}

#forgot-password-btn:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.error-message {
    margin-top: 10px;
    font-size: 1.1rem;
    color: red;
}

/* Stay Signed In Styles */
.stay-signed-in {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 10px 0;
}

.stay-signed-in input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.stay-signed-in label {
    color: #fff;
    font-size: 14px;
}

/* Redirect Link Styling */
.login-container p a {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

.login-container p a:hover {
    color: var(--secondary-color-dark);
    text-decoration: underline;
}

.login-container p {
    color: var(--white);
    margin-top: 15px;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .login-box {
        width: 90%;
    }
}