*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    min-height:100vh;
    background:#070b14;
    color:#ffffff;
    font-family:Arial,sans-serif;
    overflow-x:hidden;
}

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

.hero-bg,
.auth-bg{
    position:fixed;
    inset:0;
    z-index:0;
    background:
        radial-gradient(circle at top left, rgba(109,94,245,0.25), transparent 30%),
        radial-gradient(circle at bottom right, rgba(77,166,255,0.18), transparent 30%),
        linear-gradient(135deg,#070b14,#0f1726);
}

/* =========================================
AUTH PAGE
========================================= */

.auth-page{
    overflow:hidden;
}

.auth-container{
    position:relative;
    z-index:2;
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:30px 16px;
}

.auth-card{
    width:100%;
    max-width:480px;
    padding:38px 30px;
    border-radius:32px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    backdrop-filter:blur(14px);
    box-shadow:0 0 60px rgba(109,94,245,0.18);
}

.auth-logo{
    font-size:34px;
    font-weight:900;
    text-align:center;
    margin-bottom:18px;
}

.auth-card h1{
    text-align:center;
    font-size:38px;
    margin-bottom:12px;
}

.auth-subtitle{
    text-align:center;
    color:#b7c0d4;
    line-height:1.8;
    margin-bottom:30px;
}

.auth-error,
.auth-success{
    padding:15px;
    border-radius:16px;
    margin-bottom:22px;
    font-size:14px;
}

.auth-error{
    background:rgba(255,0,0,0.12);
    border:1px solid rgba(255,0,0,0.2);
    color:#ffb3b3;
}

.auth-success{
    background:rgba(0,255,120,0.12);
    border:1px solid rgba(0,255,120,0.2);
    color:#8dffbf;
}

.form-group{
    margin-bottom:20px;
}

.form-group label{
    display:block;
    margin-bottom:10px;
    font-size:14px;
    color:#dce3f5;
}

.form-group input{
    width:100%;
    height:58px;
    padding:0 18px;
    border:none;
    outline:none;
    border-radius:18px;
    background:rgba(255,255,255,0.05);
    border:1px solid rgba(255,255,255,0.08);
    color:#ffffff;
    font-size:15px;
}

.form-group input:focus{
    border-color:#6d5ef5;
}

.auth-btn{
    width:100%;
    height:58px;
    border:none;
    border-radius:18px;
    background:linear-gradient(90deg,#6d5ef5,#4da6ff);
    color:#ffffff;
    font-size:16px;
    font-weight:700;
    cursor:pointer;
    margin-top:10px;
}

.auth-footer{
    margin-top:26px;
    text-align:center;
    color:#b7c0d4;
    font-size:14px;
}

.auth-footer a{
    color:#4da6ff;
    text-decoration:none;
}

/* =========================================
RESPONSIVE
========================================= */

@media(max-width:768px){

    .auth-card{
        padding:30px 22px;
        border-radius:26px;
    }

    .auth-card h1{
        font-size:32px;
    }

    .auth-logo{
        font-size:28px;
    }

}