/* ========== LOGIN STYLES ========== */

.auth-container {
    padding: 4rem 2rem;
    max-width: 500px;
    margin: 0 auto;
}

.auth-title {
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.75rem;
    color: #333;
}

.auth-card {
    background: #fff;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.auth-form {
    width: 100%;
}

.auth-form__error-box {
    background: #fee;
    border: 1px solid #fcc;
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 4px;
    color: #d00;
}

.auth-form__field {
    margin-bottom: 1.5rem;
}

.auth-form__label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: #333;
}

.auth-form__field input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.auth-form__field input:focus {
    outline: none;
    border-color: #2c7a4b;
    box-shadow: 0 0 0 3px rgba(44, 122, 75, 0.1);
}

.auth-form__field-error {
    color: #d00;
    margin-top: 0.25rem;
    font-size: 0.875rem;
}

.auth-form__forgot-link {
    text-align: right;
    margin-bottom: 1.5rem;
}

.auth-form__submit-btn {
    width: 100%;
    padding: 0.75rem;
    background: #2c7a4b;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.auth-form__submit-btn:hover {
    background: #235d3a;
}

.auth-form__submit-btn:active {
    transform: translateY(1px);
}

.auth-link {
    color: #2c7a4b;
    text-decoration: none;
    transition: color 0.3s ease;
}

.auth-link:hover {
    color: #235d3a;
    text-decoration: underline;
}

.auth-link--small {
    font-size: 0.9rem;
}

.auth-link--bold {
    font-weight: 600;
}

.auth-card__footer {
    text-align: center;
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #ddd;
}

.auth-card__footer-text {
    margin-bottom: 0.5rem;
    color: #666;
}

.auth-card__footer-text:last-child {
    margin-top: 0.5rem;
}

/* ========== REGISTER STYLES ========== */

.auth-form__required {
    color: #d00;
}

.auth-form__field-group {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

@media (max-width: 768px) {
    .auth-form__field-group {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ========== PASSWORD RESET REQUEST STYLES ========== */

.auth-description {
    text-align: center;
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

/* ========== PASSWORD RESET CONFIRM STYLES ========== */

.auth-form__help-text {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: #666;
}

.auth-form__requirements-list {
    margin: 0;
    padding-left: 1.5rem;
    line-height: 1.6;
}

.auth-form__requirements-list li {
    margin-bottom: 0.25rem;
}

.auth-subtitle {
    margin-bottom: 1rem;
    font-size: 1.5rem;
    color: #333;
}

.auth-error-icon {
    width: 64px;
    height: 64px;
    background: #ffebee;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-error-icon__svg {
    width: 32px;
    height: 32px;
    color: #c62828;
}

/* ========== PASSWORD RESET COMPLETE STYLES ========== */

.auth-card--centered {
    text-align: center;
}

.auth-success-icon {
    width: 64px;
    height: 64px;
    background: #e8f5e9;
    border-radius: 50%;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-success-icon__svg {
    width: 32px;
    height: 32px;
    color: #2c7a4b;
}

.auth-message {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
}

.auth-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-btn--primary {
    background: #2c7a4b;
    color: white;
}

.auth-btn--primary:hover {
    background: #235d3a;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(44, 122, 75, 0.2);
}

/* ========== PASSWORD RESET DONE STYLES ========== */

.auth-info-box {
    background: #f5f5f5;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 2rem;
}

.auth-info-box__text {
    margin: 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 768px) {
    .auth-container {
        padding: 2rem 1rem;
    }

    .auth-card {
        padding: 1.5rem;
    }

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