
:root{
    --primary:#0d6efd;
    --secondary:#6610f2;
    --glass:rgba(255,255,255,0.12);
}

*{
    box-sizing:border-box;
}

body{
    margin:0;
    padding:0;
    min-height:100vh;
    overflow:hidden;
    font-family:'Poppins',sans-serif;
    background:
        radial-gradient(circle at top left,#0d6efd 0%,transparent 35%),
        radial-gradient(circle at bottom right,#6610f2 0%,transparent 35%),
        linear-gradient(135deg,#081120,#0d1b34,#13294d);
    display:flex;
    justify-content:center;
    align-items:center;
    position:relative;
}

/* =========================
   Animated Background
========================= */

.bg-animation{
    position:absolute;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:0;
}

.bg-animation span{
    position:absolute;
    display:block;
    width:25px;
    height:25px;
    background:rgba(255,255,255,0.06);
    animation:animate 25s linear infinite;
    bottom:-150px;
    border-radius:50%;
}

.bg-animation span:nth-child(1){
    left:10%;
    width:80px;
    height:80px;
    animation-duration:18s;
}

.bg-animation span:nth-child(2){
    left:20%;
    width:30px;
    height:30px;
    animation-duration:12s;
}

.bg-animation span:nth-child(3){
    left:35%;
    width:50px;
    height:50px;
    animation-duration:22s;
}

.bg-animation span:nth-child(4){
    left:50%;
    width:70px;
    height:70px;
    animation-duration:17s;
}

.bg-animation span:nth-child(5){
    left:65%;
    width:25px;
    height:25px;
    animation-duration:11s;
}

.bg-animation span:nth-child(6){
    left:80%;
    width:95px;
    height:95px;
    animation-duration:27s;
}

.bg-animation span:nth-child(7){
    left:90%;
    width:40px;
    height:40px;
    animation-duration:15s;
}

@keyframes animate{

    0%{
        transform:translateY(0) rotate(0deg);
        opacity:0;
    }

    10%{
        opacity:1;
    }

    100%{
        transform:translateY(-1200px) rotate(720deg);
        opacity:0;
    }
}

/* =========================
   Card
========================= */

.verify-wrapper{
    position:relative;
    z-index:2;
    width:100%;
    max-width:520px;
    padding:20px;
    animation:fadeIn 1s ease;
}

.verify-card{
    backdrop-filter:blur(20px);
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.15);
    border-radius:28px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.05);
    overflow:hidden;
}

/* =========================
   Header
========================= */

.card-header{
    text-align:center;
    padding:40px 35px 25px;
    border:none;
    background:transparent;
}

.logo-circle{
    width:95px;
    height:95px;
    border-radius:50%;
    margin:auto;
    background:linear-gradient(135deg,#0d6efd,#6610f2);
    display:flex;
    justify-content:center;
    align-items:center;
    color:white;
    font-size:42px;
    box-shadow:0 8px 25px rgba(13,110,253,0.45);
    margin-bottom:20px;
}

.card-header h2{
    color:white;
    font-weight:700;
    font-size:28px;
    margin-bottom:8px;
}

.card-header p{
    color:rgba(255,255,255,0.82);
    font-size:14px;
    margin:0;
    line-height:1.7;
}

/* =========================
   Body
========================= */

.card-body{
    padding:35px;
}

/* =========================
   Inputs
========================= */

.form-label{
    color:white;
    font-weight:500;
    margin-bottom:8px;
}

.input-group{
    margin-bottom:24px;
}

.input-group-text{
    background:rgba(255,255,255,0.10);
    border:1px solid rgba(255,255,255,0.15);
    color:white;
    border-radius:14px 0 0 14px;
}

.form-control{
    background:rgba(255,255,255,0.08);
    border:1px solid rgba(255,255,255,0.15);
    color:white;
    padding:14px;
    border-radius:0 14px 14px 0;
    transition:all 0.3s ease;
}

.form-control::placeholder{
    color:rgba(255,255,255,0.55);
}

.form-control:focus{
    background:rgba(255,255,255,0.12);
    color:white;
    border-color:#6ea8fe;
    box-shadow:0 0 20px rgba(13,110,253,0.25);
}

/* =========================
   Button
========================= */

.verify-btn{
    width:100%;
    padding:15px;
    border:none;
    border-radius:16px;
    background:linear-gradient(135deg,#0d6efd,#6610f2);
    color:white;
    font-size:16px;
    font-weight:600;
    letter-spacing:0.3px;
    transition:all 0.3s ease;
    box-shadow:0 10px 25px rgba(13,110,253,0.30);
}

.verify-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 30px rgba(13,110,253,0.45);
}

/* =========================
   Footer
========================= */

.security-box{
    margin-top:24px;
    padding:16px;
    border-radius:14px;
    background:rgba(255,255,255,0.06);
    border:1px solid rgba(255,255,255,0.10);
    color:rgba(255,255,255,0.82);
    font-size:13px;
    line-height:1.7;
}

.security-box i{
    color:#0dcaf0;
}

/* =========================
   Error
========================= */

.error-box{
    background:rgba(220,53,69,0.18);
    border:1px solid rgba(220,53,69,0.35);
    color:#ffd6db;
    padding:14px;
    border-radius:14px;
    margin-bottom:20px;
    font-size:14px;
}

/* =========================
   Animation
========================= */

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================
   Mobile
========================= */

@media(max-width:768px){

    .verify-wrapper{
        padding:18px;
    }

    .card-header{
        padding:35px 25px 20px;
    }

    .card-body{
        padding:25px;
    }

    .card-header h2{
        font-size:24px;
    }
}

body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
