/* ============================================
   EMAIL VERIFICATION NOTICE STYLING
   ============================================
   Styles for the email verification notice displayed
   on the login page after successful signup.
   Uses CSS variables from variables.css for consistency.
   ============================================ */

/* Main verification notice container */
.verification-notice {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 2px solid var(--primary-blue);
    border-radius: 12px;
    padding: 1.5rem;
    margin-bottom: 2rem;
    display: flex;
    gap: 1rem;
    box-shadow: var(--shadow-small);
    animation: slideDown 0.4s ease;
}

/* Email icon */
.notice-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
}

/* Content area */
.notice-content {
    flex: 1;
}

/* Notice heading */
.notice-content h3 {
    color: var(--primary-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.3rem;
    font-weight: 700;
}

/* Notice paragraphs */
.notice-content p {
    color: var(--text-dark);
    margin: 0.5rem 0;
    line-height: 1.6;
}

/* Email address display box */
.email-display {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--primary-dark);
    background: var(--text-white);
    padding: 0.75rem;
    border-radius: 6px;
    margin: 1rem 0;
    word-break: break-all;
    border: 1px solid var(--bg-lighter);
}

/* Tips section */
.verification-tips {
    margin-top: 1.25rem;
    padding-top: 1rem;
    border-top: 2px solid var(--bg-lighter);
}

/* Tips title */
.tip-title {
    font-weight: 600;
    color: var(--primary-dark);
    margin-bottom: 0.5rem;
}

/* Tips list */
.verification-tips ul {
    margin: 0.5rem 0 0 0;
    padding-left: 1.5rem;
    color: var(--text-gray);
}

/* Individual tip items */
.verification-tips li {
    margin: 0.25rem 0;
}

/* Slide down animation for notice appearance */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}