:root{

    --gold:#D4AF37;
    --silver:#C0C0C0;
    --black:#001205;
    --dark:#111111;
    --white:#ffffff;

}

body{

    margin:0;
    padding:0;

    min-height:100vh;

    background:
    radial-gradient(circle at top right,
    rgba(212,175,55,.15),
    transparent 35%),

    radial-gradient(circle at bottom left,
    rgba(212,175,55,.08),
    transparent 35%),

    #001205;

    font-family:Poppins,sans-serif;

    display:flex;
    align-items:center;

}

.login-wrapper{

    width:100%;

    padding:40px 0;

}

.login-card{

    background:
    rgba(255,255,255,.03);

    backdrop-filter:blur(15px);

    border:1px solid rgba(212,175,55,.15);

    border-radius:30px;

    padding:50px 35px;

    text-align:center;

    position:relative;

    overflow:hidden;

}

.login-card::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:
    rgba(212,175,55,.08);

    border-radius:50%;

    filter:blur(90px);

    top:-120px;
    right:-120px;

}

.logo-box img{

    width:120px;

    margin:auto;
    margin-bottom:20px;

}

.login-card h1{

    color:white;

    font-size:42px;

    margin-bottom:5px;

}

.sub-title{

    color:var(--gold);

    letter-spacing:2px;

    margin-bottom:25px;

}

.secure-box{

    display:inline-flex;

    align-items:center;

    gap:10px;

    color:var(--gold);

    border:1px solid rgba(212,175,55,.20);

    padding:10px 20px;

    border-radius:50px;

    margin-bottom:25px;

}

.description{

    color:#cfcfcf;

    line-height:1.8;

}

.wallet-btn{

    width:100%;

    margin-top:20px;

    border:none;

    background:
    linear-gradient(
    135deg,
    #D4AF37,
    #F5D77A);

    color:black;

    font-weight:700;

    padding:18px;

    border-radius:60px;

    font-size:18px;

    transition:.4s;

}

.wallet-btn:hover{

    transform:translateY(-3px);

    box-shadow:
    0 0 30px rgba(212,175,55,.35);

}

.wallets{

    margin-top:30px;

    display:flex;

    justify-content:center;

    gap:15px;

    flex-wrap:wrap;

}

.wallets span{

    color:#cfcfcf;

    border:1px solid rgba(212,175,55,.10);

    padding:8px 15px;

    border-radius:30px;

    font-size:13px;

}

.login-footer{

    margin-top:35px;

    color:#777;

    font-size:13px;

}