/* Login Page Styles */

body {
    background-image: url('../images/background_2.jpg');
    background-size: 120%;
    background-position: center;
    background-attachment: scroll;
    background-repeat: no-repeat;
}

.auth-wrapper {
    position: relative;
    margin: 180px auto 40px;
    max-width: 500px;
    padding: 20px;
    z-index: 2;
}

.auth-card {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    padding: 40px;
    border-radius: 25px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

.auth-title {
    font-family: 'Insolente', Arial, sans-serif;
    font-size: 2.5rem;
    color: #000;
    font-weight: 900;
    text-align: center;
    margin-bottom: 10px;
}

.auth-subtitle {
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 0.95rem;
    color: #666;
    text-align: center;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 0.9rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid rgba(159, 188, 153, 0.3);
    border-radius: 12px;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    box-sizing: border-box;
}

.form-input:focus {
    outline: none;
    border-color: #9fbc99;
    box-shadow: 0 0 0 3px rgba(159, 188, 153, 0.2);
}

.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 0.85rem;
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #666;
}

.checkbox-group input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #7ba075;
}

.forgot-link {
    color: #7ba075;
    text-decoration: none;
    transition: color 0.2s ease;
}

.forgot-link:hover {
    color: #9fbc99;
}

.error-message {
    background: rgba(255, 77, 77, 0.1);
    border: 2px solid rgba(255, 77, 77, 0.3);
    color: #d32f2f;
    padding: 12px 15px;
    border-radius: 12px;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 0.9rem;
    margin-bottom: 20px;
    text-align: center;
}

.submit-btn {
    width: 100%;
    padding: 15px;
    background: #000;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Insolente', Arial, sans-serif;
    font-size: 1.1rem;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: #333;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.submit-btn:active {
    transform: translateY(0);
}

.auth-footer {
    text-align: center;
    margin-top: 25px;
    font-family: 'Gabarito', Arial, sans-serif;
    font-size: 0.9rem;
    color: #666;
}

.auth-footer a {
    color: #7ba075;
    font-weight: bold;
    text-decoration: none;
    transition: color 0.2s ease;
}

.auth-footer a:hover {
    color: #9fbc99;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    body {
        background-size: cover !important;
    }

    .auth-wrapper {
        margin: 120px auto 40px;
        padding: 15px;
    }

    .auth-card {
        padding: 30px 20px;
    }

    .auth-title {
        font-size: 2rem;
    }

    .form-options {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }
}
