@charset "utf-8";
/* CSS Document */


:root{
    --gold:#D4AF37;
    --gold-light:#FFE48F;
    --gold-dark:#8f6900;
    --black:#050505;
    --black-soft:#101010;
    --white:#fff;
}

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:'Poppins',sans-serif;
}

body{

    min: height 80vh;

    background:
    radial-gradient(circle at top left, rgba(212,175,55,.18), transparent 30%),
    radial-gradient(circle at bottom right, rgba(0,255,120,.12), transparent 30%),
    linear-gradient(145deg,#000,#07110a,#000);



    display:flex;
    align-items:center;
    justify-content:center;

    position:relative;

    color:#fff;

    padding:10px;
    overflow-y:auto;   /* barra vertical */
    overflow-x:hidden;   /* barra horizontal */
}

/* ================================================= */
/* FUNDO PREMIUM */
/* ================================================= */

.bg-grid{

    position:absolute;
    inset:0;

    opacity:.05;

    background-image:
    linear-gradient(rgba(255,255,255,.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.08) 1px, transparent 1px);

    background-size:40px 40px;

    z-index:0;
}

.glow{

    position:absolute;

    border-radius:50%;

    filter:blur(100px);

    animation:glowMove 8s infinite alternate ease-in-out;
}

.glow1{

    width:600px;
    height:600px;

    background:rgba(212,175,55,.15);

    top:-200px;
    left:-150px;
}

.glow2{

    width:500px;
    height:500px;

    background:rgba(0,255,120,.08);

    bottom:-120px;
    right:-100px;
}

@keyframes glowMove{

    100%{

        transform:
        translate(60px,40px)
        scale(1.1);
    }
}

/* ================================================= */
/* PARTICLES */
/* ================================================= */

.particles span{

    position:absolute;

    width:4px;
    height:4px;

    background:var(--gold);

    border-radius:50%;

    opacity:.5;

    animation:particles linear infinite;
}

@keyframes particles{

    from{

        transform:
        translateY(100vh)
        scale(0);

        opacity:0;
    }

    30%{
        opacity:1;
    }

    to{

        transform:
        translateY(-100vh)
        scale(1);

        opacity:0;
    }
}

/* ================================================= */
/* OBJETOS FLUTUANTES */
/* ================================================= */

.floating-objects{

    position:absolute;

    inset:0;

    overflow:hidden;

    pointer-events:none;

    z-index:1;
}

/* IMAGENS */

.float-img{

    position:absolute;

    opacity:.15;

    filter:
    drop-shadow(0 0 25px rgba(212,175,55,.25));

    animation:floatSmooth 9s ease-in-out infinite;
}

/* TAÇA 1 */

.trophy-1{

    width:150px;

    top:7%;
    left:5%;

    animation-delay:0s;
}

/* BOLA 1 */

.ball-1{

    width:220px;

    bottom:8%;
    left:4%;

    animation-delay:1s;
}

/* TAÇA 2 */

.trophy-2{

    width:120px;

    top:14%;
    right:7%;

    animation-delay:2s;
}

/* BOLA 2 */

.ball-2{

    width:180px;

    bottom:10%;
    right:4%;

    animation-delay:3s;
}

/* ANIMAÇÃO SUAVE */

@keyframes floatSmooth{

    0%{

        transform:
        translateY(0px)
        rotate(0deg);
    }

    50%{

        transform:
        translateY(-18px)
        rotate(4deg);
    }

    100%{

        transform:
        translateY(0px)
        rotate(0deg);
    }
}

/* ================================================= */
/* CONTAINER */
/* ================================================= */

.container{

    position:relative;

    z-index:10;

    width:100%;
    max-width:1180px;

    perspective:1200px;


}

/* ================================================= */
/* CARD */
/* ================================================= */

.main-card{

    width:100%;

    min-height:720px;

    border-radius:40px;

    overflow:hidden;

    display:flex;

    position:relative;

    background:
    linear-gradient(145deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02));

    backdrop-filter:blur(25px);

    border:1px solid rgba(212,175,55,.18);

    box-shadow:
    0 30px 60px rgba(0,0,0,.7),
    inset 0 0 30px rgba(255,255,255,.03);

    transition:transform .3s ease;
}

/* ================================================= */
/* BORDA PREMIUM */
/* ================================================= */

.main-card::before{

    content:'';

    position:absolute;

    inset:0;

    border-radius:40px;

    padding:1px;

    background:
    linear-gradient(135deg,
    rgba(255,215,0,.8),
    transparent,
    rgba(0,255,120,.3));

    -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

    -webkit-mask-composite:xor;

    pointer-events:none;
}

/* ================================================= */
/* LEFT */
/* ================================================= */

.left{

    width:50%;

    padding:60px;

    position:relative;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

/* TAG */

.premium-tag{

    width:max-content;

    padding:12px 20px;

    border-radius:999px;

    background:
    linear-gradient(145deg,
    rgba(255,215,0,.16),
    rgba(255,255,255,.04));

    border:1px solid rgba(255,215,0,.2);

    color:var(--gold);

    font-size:12px;

    font-weight:700;

    letter-spacing:1px;

    margin-bottom:25px;

    box-shadow:
    0 0 25px rgba(255,215,0,.12);
}

/* LOGO */

.logo{

    width:210px;
    max-width:100%;

    filter:
    drop-shadow(0 0 25px rgba(255,215,0,.35));

    animation:pulse 4s ease-in-out infinite;
}

@keyframes pulse{

    50%{
        transform:scale(1.03);
    }
}

.left h1{

    font-size:58px;

    line-height:1;

    font-weight:900;

    margin-top:35px;
}

.left h1 span{

    color:var(--gold);

    text-shadow:
    0 0 25px rgba(212,175,55,.5);
}

.left p{

    margin-top:28px;

    font-size:15px;

    line-height:1.8;

    color:#cfcfcf;

    max-width:500px;
}

/* STATS */

.stats{

    display:flex;

    gap:18px;

    margin-top:35px;
}

.stat-box{

    flex:1;

    padding:22px;

    border-radius:22px;

    background:
    linear-gradient(145deg,
    rgba(255,255,255,.05),
    rgba(255,255,255,.02));

    border:1px solid rgba(255,255,255,.08);

    backdrop-filter:blur(20px);
}

.stat-box h2{

    color:var(--gold);

    font-size:28px;

    margin-bottom:5px;

    font-weight:900;
}

.stat-box span{

    color:#ccc;

    font-size:13px;
}

/* ================================================= */
/* RIGHT */
/* ================================================= */

.right{

    width:50%;

    position:relative;

    display:flex;
    justify-content:center;
    align-items:center;

    overflow:hidden;
}

/* GLOW RIGHT */

.right-glow{

    position:absolute;

    width:450px;
    height:450px;

    border-radius:50%;

    background:
    radial-gradient(circle,
    rgba(255,215,0,.08),
    transparent 70%);

    filter:blur(80px);
}

/* ================================================= */
/* FORM */
/* ================================================= */

.form-box{

    width:100%;
    max-width:420px;

    position:absolute;

    transition:.7s ease;

    padding:20px;

    z-index:2;
}

/* LOGIN */

#login-form{

    transform:translateX(0);

    opacity:1;
}

/* SIGNUP */

#signup-form{

    transform:translateX(120%);

    opacity:0;
}

/* TITULOS */

.mini-line{

    width:70px;
    height:6px;

    border-radius:999px;

    background:
    linear-gradient(90deg,var(--gold),#00ff88);

    margin-bottom:20px;
}

.form-title{

    font-size:42px;

    font-weight:900;

    margin-bottom:8px;
}

.form-title span{

    color:var(--gold);
}

.form-sub{

    color:#aaa;

    font-size:14px;

    margin-bottom:35px;
}

/* INPUTS */

.form-group{

    position:relative;

    margin-bottom:20px;
}

.form-group i{

    position:absolute;

    left:20px;
    top:50%;

    transform:translateY(-50%);

    color:var(--gold);

    font-size:16px;
}

input{

    width:100%;

    height:62px;

    border:none;
    outline:none;

    padding:0 20px 0 58px;

    border-radius:18px;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:#fff;

    font-size:15px;

    transition:.4s;
}

input:focus{

    border-color:var(--gold);

    background:
    rgba(255,255,255,.07);

    box-shadow:
    0 0 25px rgba(212,175,55,.15);

    transform:translateY(-2px);
}

/* REMEMBER */

.remember-box{

    display:flex;

    justify-content:space-between;
    align-items:center;

    margin-top:-4px;
    margin-bottom:25px;
}

.check{

    display:flex;
    align-items:center;

    gap:10px;

    color:#ccc;

    font-size:13px;

    cursor:pointer;
}

.check input{
    display:none;
}

.check span{

    width:18px;
    height:18px;

    border-radius:5px;

    border:1px solid rgba(255,215,0,.4);

    position:relative;
}

.check input:checked + span::before{

    content:'✓';

    position:absolute;

    inset:0;

    display:flex;
    align-items:center;
    justify-content:center;

    color:var(--gold);

    font-size:12px;
}

.remember-box a{

    color:var(--gold);

    font-size:13px;

    text-decoration:none;
}

/* BOTÃO */

.btn-action{

    width:100%;

    height:62px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    background:
    linear-gradient(135deg,
    var(--gold-dark),
    var(--gold),
    var(--gold-light));

    color:#000;

    font-size:15px;

    font-weight:900;

    letter-spacing:1px;

    transition:.4s;

    position:relative;

    overflow:hidden;
}

.btn-action:hover{

    transform:
    translateY(-4px)
    scale(1.02);

    box-shadow:
    0 18px 40px rgba(212,175,55,.3);
}

.btn-action::before{

    content:'';

    position:absolute;

    width:100%;
    height:100%;

    top:0;
    left:-100%;

    background:
    linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.5),
    transparent);

    transition:.7s;
}

.btn-action:hover::before{

    left:100%;
}

/* DIVIDER */

.divider{

    display:flex;
    align-items:center;

    gap:15px;

    margin:28px 0;
}

.divider::before,
.divider::after{

    content:'';

    flex:1;

    height:1px;

    background:
    linear-gradient(90deg,
    transparent,
    rgba(255,255,255,.15),
    transparent);
}

.divider span{

    color:#888;

    font-size:13px;
}

/* GOOGLE */

.google-btn{

    width:100%;

    height:58px;

    border-radius:18px;

    border:1px solid rgba(255,255,255,.08);

    background:
    rgba(255,255,255,.04);

    color:#fff;

    display:flex;
    align-items:center;
    justify-content:center;

    gap:14px;

    cursor:pointer;

    transition:.4s;
}

.google-btn img{

    width:22px;
}

.google-btn:hover{

    background:
    rgba(255,255,255,.06);

    transform:translateY(-3px);
}

/* TOGGLE */

.toggle-text{

    text-align:center;

    margin-top:25px;

    color:#aaa;

    font-size:14px;
}

.toggle-text span{

    color:var(--gold);

    font-weight:700;

    cursor:pointer;

    margin-left:5px;
}

/* BACK */

.back-arrow{

    position:absolute;

    top:30px;
    left:30px;

    width:45px;
    height:45px;

    border-radius:14px;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    rgba(255,255,255,.05);

    border:1px solid rgba(255,255,255,.08);

    color:var(--gold);

    text-decoration:none;

    z-index:30;

    transition:.3s;
}

.back-arrow:hover{

    transform:translateX(-4px);

    background:
    rgba(255,255,255,.08);
}

/* ================================================= */
/* SUCCESS OVERLAY */
/* ================================================= */

.success-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(145deg,
    rgba(0,0,0,.96),
    rgba(10,10,10,.98));

    z-index:100;

    display:none;

    flex-direction:column;
    align-items:center;
    justify-content:center;

    padding:40px;

    text-align:center;

    overflow:hidden;
}

/* GLOW */

.success-overlay::before{

    content:'';

    position:absolute;

    width:300px;
    height:300px;

    background:
    radial-gradient(circle,
    rgba(255,215,0,.18),
    transparent 70%);

    border-radius:50%;

    filter:blur(60px);

    top:-100px;
    right:-50px;
}

/* ICON */

.success-overlay i{

    width:95px;
    height:95px;

    border-radius:50%;

    display:flex;
    align-items:center;
    justify-content:center;

    background:
    linear-gradient(135deg,
    var(--gold),
    var(--gold-light));

    color:#000;

    font-size:42px;

    margin-bottom:25px;

    box-shadow:
    0 0 40px rgba(212,175,55,.35);

    animation:bounceIn .8s cubic-bezier(.68,-0.55,.265,1.55);
}

@keyframes bounceIn{

    0%{

        transform:
        scale(0);

        opacity:0;
    }

    60%{

        transform:
        scale(1.1);
    }

    100%{

        transform:
        scale(1);

        opacity:1;
    }
}

.success-overlay h3{

    color:var(--gold);

    font-size:34px;

    font-weight:900;

    margin-bottom:14px;

    letter-spacing:1px;
}

.success-overlay p{

    color:#d0d0d0;

    font-size:15px;

    line-height:1.8;

    max-width:500px;
}

/* BARRA */

.success-bar{

    width:100%;
    max-width:320px;

    height:8px;

    border-radius:999px;

    background:
    rgba(255,255,255,.05);

    overflow:hidden;

    margin-top:35px;
}

.success-progress{

    width:100%;
    height:100%;

    border-radius:999px;

    background:
    linear-gradient(90deg,
    var(--gold),
    #00ff88);

    animation:progress 3.5s linear forwards;
}

@keyframes progress{

    from{
        width:100%;
    }

    to{
        width:0%;
    }
}

.success-small{

    margin-top:16px;

    color:var(--gold);

    font-size:11px;

    letter-spacing:3px;

    text-transform:uppercase;
}

/* ================================================= */
/* RESPONSIVO */
/* ================================================= */

@media(max-width:980px){

    body{
        overflow:auto;
    }

    .main-card{

        flex-direction:column;

        min-height:auto;
    }

    .left,
    .right{

        width:100%;
    }

    .left{

        padding:90px 30px 30px;

        text-align:center;

        align-items:center;
    }

    .left h1{

        font-size:40px;
    }

    .left p{

        font-size:14px;
    }

    .stats{

        width:100%;

        flex-direction:column;
    }

    .right{

        min-height:760px;
    }

    .trophy-1{

        width:90px;

        top:3%;
        left:-2%;
    }

    .ball-1{

        width:120px;

        bottom:4%;
        left:-5%;
    }

    .trophy-2{

        width:80px;

        top:8%;
        right:-2%;
    }

    .ball-2{

        width:110px;

        bottom:6%;
        right:-4%;
    }

    .float-img{

        opacity:.10;
    }

    .logo{

        width:170px;
    }

    .back-arrow{

        top:20px;
        left:20px;
    }
}

@media(max-width:600px){

    .form-title{

        font-size:34px;
    }

    .main-card{

        border-radius:30px;
    }

    .left{

        padding:85px 22px 20px;
    }

    .right{

        min-height:720px;
    }

    .form-box{

        padding:22px;
    }

    .success-overlay h3{

        font-size:26px;
    }

    .success-overlay p{

        font-size:14px;
    }
}

.hidden{
    display:none !important;
}

