
:root{
    --primary:#0d6efd;
    --secondary:#6610f2;
    --dark:#081120;
    --glass:rgba(255,255,255,0.10);
    --border:rgba(255,255,255,0.16);
}

*{
    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 Particles
========================================================= */

.bg-animation{
    position:absolute;
    width:100%;
    height:100%;
    overflow:hidden;
    z-index:0;
}

.bg-animation span{
    position:absolute;
    display:block;
    border-radius:50%;
    background:rgba(255,255,255,0.06);
    animation:floatUp linear infinite;
    bottom:-150px;
}

/* Dynamic Particles */

.bg-animation span:nth-child(1){
    left:8%;
    width:90px;
    height:90px;
    animation-duration:18s;
}

.bg-animation span:nth-child(2){
    left:20%;
    width:35px;
    height:35px;
    animation-duration:12s;
}

.bg-animation span:nth-child(3){
    left:32%;
    width:60px;
    height:60px;
    animation-duration:22s;
}

.bg-animation span:nth-child(4){
    left:48%;
    width:100px;
    height:100px;
    animation-duration:20s;
}

.bg-animation span:nth-child(5){
    left:62%;
    width:28px;
    height:28px;
    animation-duration:14s;
}

.bg-animation span:nth-child(6){
    left:75%;
    width:70px;
    height:70px;
    animation-duration:24s;
}

.bg-animation span:nth-child(7){
    left:88%;
    width:40px;
    height:40px;
    animation-duration:16s;
}

@keyframes floatUp{

    0%{
        transform:translateY(0) rotate(0deg);
        opacity:0;
    }

    10%{
        opacity:1;
    }

    100%{
        transform:translateY(-1300px) rotate(720deg);
        opacity:0;
    }
}

/* =========================================================
   Main Wrapper
========================================================= */

.wrapper{
    position:relative;
    z-index:2;
    width:100%;
    max-width:760px;
    padding:25px;
    animation:fadeIn 1s ease;
}

@keyframes fadeIn{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* =========================================================
   Recovery Card
========================================================= */

.recovery-card{

    backdrop-filter:blur(22px);

    background:rgba(255,255,255,0.10);

    border:1px solid rgba(255,255,255,0.14);

    border-radius:28px;

    padding:50px;

    box-shadow:
        0 15px 50px rgba(0,0,0,0.35),
        inset 0 0 0 1px rgba(255,255,255,0.05);

    overflow:hidden;

    position:relative;
}

/* =========================================================
   Logo Circle
========================================================= */

.logo-circle{

    width:110px;
    height:110px;

    margin:auto auto 24px auto;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:linear-gradient(135deg,#0d6efd,#6610f2);

    color:white;

    font-size:46px;

    box-shadow:0 10px 35px rgba(13,110,253,0.45);

    animation:pulseGlow 4s infinite;
}

@keyframes pulseGlow{

    0%{
        box-shadow:0 0 0 rgba(13,110,253,0.45);
    }

    50%{
        box-shadow:0 0 35px rgba(13,110,253,0.55);
    }

    100%{
        box-shadow:0 0 0 rgba(13,110,253,0.45);
    }
}

/* =========================================================
   Typography
========================================================= */

.brand-title{

    text-align:center;

    color:white;

    font-size:32px;

    font-weight:700;

    margin-bottom:10px;
}

.subtitle{

    text-align:center;

    color:rgba(255,255,255,0.82);

    margin-bottom:35px;

    line-height:1.8;
}

/* =========================================================
   Security Box
========================================================= */

.security-box{

    background:rgba(255,255,255,0.06);

    border:1px solid rgba(255,255,255,0.10);

    border-left:5px solid #0dcaf0;

    padding:24px;

    border-radius:18px;

    margin-bottom:25px;

    color:white;
}

.security-box h5{

    font-weight:600;

    margin-bottom:16px;
}

.security-list{

    margin:0;

    padding-left:20px;
}

.security-list li{

    margin-bottom:10px;

    color:rgba(255,255,255,0.85);
}

/* =========================================================
   Notice Box
========================================================= */

.notice-box{

    background:rgba(255,193,7,0.10);

    border:1px solid rgba(255,193,7,0.20);

    border-left:5px solid #ffc107;

    padding:24px;

    border-radius:18px;

    margin-bottom:30px;

    color:#fff3cd;

    line-height:1.8;
}

/* =========================================================
   Button
========================================================= */

.btn-bank{

    width:100%;

    height:58px;

    border:none;

    border-radius:16px;

    background:linear-gradient(135deg,#0d6efd,#6610f2);

    color:white;

    font-size:16px;

    font-weight:600;

    transition:all 0.3s ease;

    box-shadow:0 12px 28px rgba(13,110,253,0.30);
}

.btn-bank:hover{

    transform:translateY(-2px);

    box-shadow:0 18px 36px rgba(13,110,253,0.45);

    color:white;
}

/* =========================================================
   Footer
========================================================= */

.footer-note{

    margin-top:32px;

    text-align:center;

    color:rgba(255,255,255,0.72);

    font-size:14px;

    line-height:1.8;
}

/* =========================================================
   Mobile
========================================================= */

@media(max-width:768px){

    body{
        overflow:auto;
    }

    .wrapper{
        padding:20px;
    }

    .recovery-card{
        padding:35px 25px;
    }

    .brand-title{
        font-size:26px;
    }

    .subtitle{
        font-size:14px;
    }

    .logo-circle{
        width:90px;
        height:90px;
        font-size:38px;
    }
}

body
{
   background-color: #FFFFFF;
   color: #000000;
   font-family: Arial;
   font-weight: normal;
   font-size: 16px;
   line-height: 1.1875;
   margin: 0;
   padding: 0;
}
