.auth-wrapper{
    min-height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:40px 20px;
    background:#070b17;
}

.auth-card{
    width:100%;
    max-width:520px;
    background:#121d36;
    border-radius:28px;
    padding:45px;
    border:1px solid rgba(255,255,255,0.05);
}

.auth-logo{
    text-align:center;
    margin-bottom:35px;
}

.auth-logo img{
    width:80px;
    margin-bottom:15px;
}

.auth-logo h2{
    font-size:32px;
    margin-bottom:10px;
}

.auth-logo p{
    color:#aab5c5;
}

.auth-form label{
    margin-bottom:10px;
    font-weight:600;
}

.auth-form .form-control{
    background:#0b1327;
    border:1px solid #1f2a44;
    color:#fff;
    height:55px;
    border-radius:14px;
    margin-bottom:22px;
}

.auth-form .form-control:focus{
    background:#0b1327;
    color:#fff;
    border-color:#00bfff;
    box-shadow:none;
}

.auth-form .form-control::placeholder{
    color:#7f8ba1;
}

.auth-btn{
    width:100%;
    background:#00bfff;
    border:none;
    color:#fff;
    height:55px;
    border-radius:14px;
    font-weight:700;
    transition:0.3s;
}

.auth-btn:hover{
    background:#009acd;
}

.auth-bottom{
    text-align:center;
    margin-top:25px;
}

.auth-bottom a{
    color:#00bfff;
}

.profile-upload-box{
    background:#0b1327;
    border:2px dashed #2b3854;
    border-radius:18px;
    padding:25px;
    text-align:center;
    margin-bottom:25px;
}

.profile-upload-box i{
    font-size:45px;
    color:#00bfff;
    margin-bottom:15px;
}

.profile-upload-box p{
    color:#aeb7c4;
    margin-bottom:0;
}