/* RESET */
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
    font-family:Inter, system-ui, Arial;
}

body{
    background:#0f1117;
    color:#e6e9ef;
}

/* CENTER AUTH CARD */
.auth-wrapper{
    height:100vh;
    display:flex;
    align-items:center;
    justify-content:center;
}

.auth-card{
    width:380px;
    background:#151923;
    border:1px solid #232838;
    border-radius:14px;
    padding:28px;
    box-shadow:0 10px 40px rgba(0,0,0,.45);
}

/* LOGO */
.logo{
    text-align:center;
    font-size:22px;
    font-weight:700;
    margin-bottom:20px;
    letter-spacing:.5px;
}

.logo span{
    color:#6c8cff;
}

/* INPUTS */
.form-group{
    margin-bottom:14px;
}

label{
    font-size:13px;
    color:#9aa4bf;
    display:block;
    margin-bottom:6px;
}

input{
    width:100%;
    background:#0f141d;
    border:1px solid #2a3146;
    border-radius:8px;
    padding:12px;
    color:#fff;
    outline:none;
    transition:.15s;
}

input:focus{
    border-color:#6c8cff;
    box-shadow:0 0 0 2px rgba(108,140,255,.15);
}

/* BUTTON */
.btn{
    width:100%;
    background:#6c8cff;
    border:none;
    padding:12px;
    border-radius:8px;
    color:#fff;
    font-weight:600;
    cursor:pointer;
    transition:.15s;
}

.btn:hover{
    background:#5a77ff;
}

/* ALERTS */
.alert{
    background:#2b1d1f;
    color:#ff8080;
    padding:10px;
    border-radius:8px;
    margin-bottom:12px;
    font-size:14px;
}

/* LINK */
.auth-link{
    margin-top:16px;
    text-align:center;
    font-size:14px;
    color:#9aa4bf;
}

.auth-link a{
    color:#6c8cff;
    text-decoration:none;
}