﻿/*=====================================
    IMPORT FONT
=====================================*/

@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

body {
    margin: 0;
    padding: 0;
    font-family: 'Poppins',sans-serif;
    background: #F8F9FD;
}

/*=====================================
    BACKGROUND
=====================================*/

.verification-overlay {
    position: fixed;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: rgba(255,255,255,.65);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
}

/*=====================================
    MODAL
=====================================*/

.verification-modal {
    width: 720px;
    background: white;
    border-radius: 32px;
    padding: 60px 70px;
    text-align: center;
    box-shadow: 0 40px 80px rgba(0,0,0,.08), 0 15px 35px rgba(118,85,255,.08);
    animation: popup .35s ease;
}

@keyframes popup {

    from {
        opacity: 0;
        transform: translateY(20px) scale(.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}


/*=====================================
    GREETING
=====================================*/

.greeting {
    margin-top: 28px;
    margin-bottom: 8px;
    font-size: 13px;
    letter-spacing: 4px;
    font-weight: 700;
    color: #7C3AED;
}

/*=====================================
    TITLE
=====================================*/

.verification-modal h1 {
    margin: 0;
    font-size: 46px;
    color: #161C3D;
    font-weight: 800;
}

.title-line {
    width: 75px;
    height: 5px;
    margin: 22px auto;
    border-radius: 20px;
    background: linear-gradient( 90deg, #8B5CF6, #A855F7 );
}

/*=====================================
    BADGE
=====================================*/

.role-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    background: #F3E8FF;
    color: #7C3AED;
    border-radius: 50px;
    font-weight: 600;
    font-size: 15px;
}

.status-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #8B5CF6;
}

/*=====================================
    DESCRIPTION
=====================================*/

.description {
    width: 520px;
    max-width: 100%;
    margin: 30px auto;
    color: #6B7280;
    font-size: 17px;
    line-height: 1.8;
}

/*=====================================
    BUTTON
=====================================*/

.verify-btn {
    display: inline-block;
    margin-top: 10px;
    padding: 18px 70px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 17px;
    font-weight: 600;
    color: white;
    background: linear-gradient( 135deg, #8B5CF6, #6D28D9 );
    transition: .3s;
    box-shadow: 0 18px 35px rgba(124,58,237,.25);
}

    .verify-btn:hover {
        transform: translateY(-4px);
        box-shadow: 0 25px 45px rgba(124,58,237,.35);
    }

/*=====================================
    FOOTER
=====================================*/

.footer-note {
    margin-top: 35px;
    font-size: 13px;
    color: #9CA3AF;
}

    .footer-note i {
        margin-right: 6px;
        color: #8B5CF6;
    }
/*=====================================
    MOBILE
=====================================*/

@media(max-width:768px) {

    .verification-modal {
        width: 90%;
        padding: 40px 30px;
    }

        .verification-modal h1 {
            font-size: 34px;
        }

    .description {
        width: 100%;
        font-size: 15px;
    }

    .verify-btn {
        width: 100%;
        box-sizing: border-box;
    }
}
