/* Pages authentification Eleyca — complète login.css */

.auth-card {
    max-width: 440px;
    margin: 0 auto;
}

.auth-social-wrap {
    max-width: 300px;
    margin: 0 auto;
}

.auth-field-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: #123575;
    margin-bottom: 0.35rem;
}

.auth-hint {
    font-size: 0.82rem;
    color: #6c757d;
    line-height: 1.45;
    margin-top: 0.35rem;
}

.auth-submit {
    width: 100%;
}

.auth-top-link {
    font-size: 0.95rem;
}

.auth-footer-link {
    font-size: 1rem;
}

.auth-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 1.25rem;
}

.auth-icon--primary {
    background: linear-gradient(135deg, #e8f0fc 0%, #d4e4fa 100%);
    color: #2376dc;
}

.auth-icon--success {
    background: linear-gradient(135deg, #e6f7ed 0%, #d1f0dc 100%);
    color: #1e7e45;
}

.auth-icon--warning {
    background: linear-gradient(135deg, #fff4e0 0%, #ffe8c2 100%);
    color: #c77d00;
}

.auth-icon--lock {
    background: linear-gradient(135deg, #f0e8fc 0%, #e2d4fa 100%);
    color: #5a3d9e;
}

.auth-email-badge {
    background: #f4f8ff;
    border: 1px solid #c5d9f5;
    border-radius: 8px;
    padding: 0.85rem 1rem;
    word-break: break-all;
    text-align: center;
}

.auth-note {
    background: #f4f8ff;
    border: 1px solid #c5d9f5;
    border-radius: 8px;
    padding: 0.75rem 1rem;
    font-size: 0.9rem;
    color: #123575;
    line-height: 1.5;
}

.auth-note--success {
    background: #edf9f0;
    border-color: #b8e0c4;
    color: #1b5e34;
}

.auth-alert-error {
    background: #fdecea;
    border: 1px solid #f5c6cb;
    border-radius: 8px;
    color: #842029;
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    line-height: 1.45;
}

.auth-tip {
    background: #fff8e6;
    border-left: 4px solid #f0ad4e;
    border-radius: 0 6px 6px 0;
    padding: 0.9rem 1rem;
    font-size: 0.95rem;
    color: #5c4a1f;
    line-height: 1.5;
}

.auth-meta {
    font-size: 0.9rem;
    color: #6c757d;
}

.auth-steps {
    counter-reset: auth-step;
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
}

.auth-steps li {
    counter-increment: auth-step;
    position: relative;
    padding-left: 2.5rem;
    margin-bottom: 1rem;
    line-height: 1.55;
    color: #333;
}

.auth-steps li::before {
    content: counter(auth-step);
    position: absolute;
    left: 0;
    top: 0;
    width: 1.75rem;
    height: 1.75rem;
    border-radius: 50%;
    background: #2376dc;
    color: #fff;
    font-size: 0.85rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.auth-code-input {
    font-size: 1.5rem;
    letter-spacing: 0.35em;
    text-align: center;
    font-weight: 600;
}

.auth-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    justify-content: center;
}

.auth-actions .btn-action,
.auth-actions .btn {
    min-width: 10rem;
    flex: 1 1 auto;
}

@media (max-width: 575.98px) {
    .auth-actions {
        flex-direction: column;
    }

    .auth-actions .btn-action,
    .auth-actions .btn {
        width: 100%;
    }
}

.auth-trusted-check .form-check-label {
    color: #333;
    font-size: 0.95rem;
}
