body{
    background:#0B1120;
    font-family:'Poppins',sans-serif;
}

.auth-wrapper{
    min-height:100vh;
    display:flex;
    justify-content:center;
    align-items:center;
    padding:40px;
}

.auth-card{
    width:430px;
    background:#182234;
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:40px;
    box-shadow:0 20px 60px rgba(0,0,0,.45);
}

.logo{
    font-size:32px;
    font-weight:700;
    color:#22C55E;
    text-align:center;
    margin-bottom:10px;
}

.auth-title{
    text-align:center;
    font-size:28px;
    font-weight:600;
    margin-bottom:8px;
}

.auth-subtitle{
    text-align:center;
    color:#94A3B8;
    margin-bottom:30px;
}

.form-control{
    background:#111827;
    border:1px solid #374151;
    color:#fff;
    height:50px;
}

.form-control:focus{
    background:#111827;
    color:#fff;
    border-color:#22C55E;
    box-shadow:none;
}

.form-label{
    color:#CBD5E1;
}

.btn-login{
    width:100%;
    height:50px;
    border:none;
    border-radius:10px;
    background:#22C55E;
    color:#fff;
    font-weight:600;
}

.btn-login:hover{
    background:#16A34A;
}

.auth-footer{
    text-align:center;
    margin-top:20px;
    color:#94A3B8;
}

.auth-footer a{
    color:#22C55E;
    text-decoration:none;
}