/* ==========================================
   Email Verification 120 - Frontend Styles
   Couleurs du thème : rose #E51B5C, jaune #F9B234, bleu #0680A5
   ========================================== */

/* Prompt de connexion sur la page panier */
.ev120-cart-login-prompt {
    text-align: center;
    padding: 40px 20px;
    margin-bottom: 30px;
    background: #fff;
    border: 2px solid #E51B5C;
    border-radius: 10px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.ev120-cart-login-prompt .ev120-prompt-icon {
    margin-bottom: 15px;
}

.ev120-cart-login-prompt h3 {
    color: #000;
    font-size: 24px;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 12px 0;
}

.ev120-cart-login-prompt p {
    font-size: 16px;
    color: #555;
    margin: 0 0 8px 0;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.ev120-prompt-incentive {
    color: #0680A5 !important;
    font-size: 15px !important;
    margin-bottom: 20px !important;
}

.ev120-prompt-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

/* Boutons */
.ev120-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    padding: 0 35px;
    font-size: 18px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    text-decoration: none;
    transition: background-color 0.4s ease, color 0.4s ease;
    cursor: pointer;
    border: none;
    line-height: 1;
}

.ev120-btn-primary,
a.ev120-btn-primary {
    background-color: #E51B5C !important;
    color: #fff !important;
}

.ev120-btn-primary:hover,
a.ev120-btn-primary:hover {
    background-color: #F9B234 !important;
    color: #fff !important;
}

.ev120-btn-secondary,
a.ev120-btn-secondary {
    background-color: #0680A5 !important;
    color: #fff !important;
}

.ev120-btn-secondary:hover,
a.ev120-btn-secondary:hover {
    background-color: #F9B234 !important;
    color: #fff !important;
}

/* Notice pour utilisateurs non vérifiés */
.ev120-unverified-notice {
    text-align: center;
    padding: 30px 20px;
    margin-bottom: 30px;
    background: #fff8e1;
    border: 2px solid #F9B234;
    border-radius: 10px;
}

.ev120-unverified-notice .ev120-notice-icon {
    margin-bottom: 10px;
}

.ev120-unverified-notice h3 {
    color: #856404;
    font-size: 22px;
    font-family: 'Roboto', sans-serif;
    margin: 0 0 12px 0;
}

.ev120-unverified-notice p {
    font-size: 15px;
    color: #555;
    margin: 0 0 8px 0;
}

/* Bouton renvoyer email */
.ev120-btn-resend {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    padding: 0 25px;
    font-size: 16px;
    font-family: 'Roboto', sans-serif;
    font-weight: 700;
    border-radius: 50px;
    border: none;
    background-color: #0680A5;
    color: #fff;
    cursor: pointer;
    margin-top: 15px;
    transition: background-color 0.4s ease;
}

.ev120-btn-resend:hover {
    background-color: #F9B234;
}

.ev120-btn-resend:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.ev120-resend-status {
    font-size: 14px;
    margin-top: 10px;
    min-height: 20px;
}

/* Notices génériques */
.ev120-notice {
    padding: 16px 20px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.5;
}

.ev120-notice-success {
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
}

.ev120-notice-error {
    background: #f8d7da;
    border: 1px solid #f5c6cb;
    color: #721c24;
}

.ev120-notice-warning {
    background: #fff3cd;
    border: 1px solid #ffc107;
    color: #856404;
}

.ev120-notice-info {
    background: #d1ecf1;
    border: 1px solid #bee5eb;
    color: #0c5460;
}

/* Texte "vérifiez vos spams" */
.ev120-check-spam {
    font-size: 13px !important;
    color: #856404 !important;
    font-style: italic;
    margin-top: 8px !important;
}

/* Formation verrouillée (non vérifié) */
.ev120-course-locked p {
    color: #999;
    font-weight: bold;
    font-size: 20px;
    margin: 0;
}

.ev120-course-locked-msg {
    display: block;
    font-size: 13px;
    color: #856404;
    font-style: italic;
    margin-top: 4px;
}

/* Responsive */
@media screen and (max-width: 768px) {
    .ev120-cart-login-prompt {
        padding: 30px 15px;
    }

    .ev120-cart-login-prompt h3 {
        font-size: 20px;
    }

    .ev120-prompt-buttons {
        flex-direction: column;
        align-items: center;
    }

    .ev120-btn {
        width: 100%;
        max-width: 300px;
    }

    .ev120-unverified-notice {
        padding: 25px 15px;
    }
}
