/*=========================================================================
LOGIN PAGE
=========================================================================*/

:root{

    --auth-bg:#0a1220;

    --auth-card:#131c2d;

    --auth-border:rgba(255,255,255,.06);

    --auth-primary:#2d7cff;

    --auth-text:#eef4ff;

    --auth-muted:#8a9ab5;

    --auth-radius:16px;

}


/*=========================================================================
RESET
=========================================================================*/

*{

    margin:0;

    padding:0;

    box-sizing:border-box;

}

body{

    font-family:Inter,sans-serif;

    background:var(--auth-bg);

    color:var(--auth-text);

}


/*=========================================================================
PAGE
=========================================================================*/

.auth-page{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:center;

    padding:18px;

    position:relative;

    overflow:hidden;

}


/*=========================================================================
BACKGROUND
=========================================================================*/

.auth-page::before{

    content:"";

    position:absolute;

    width:260px;

    height:260px;

    border-radius:50%;

    background:#2563eb;

    filter:blur(140px);

    opacity:.10;

    top:-80px;

    left:-80px;

}

.auth-page::after{

    content:"";

    position:absolute;

    width:220px;

    height:220px;

    border-radius:50%;

    background:#00b8ff;

    filter:blur(140px);

    opacity:.08;

    bottom:-80px;

    right:-80px;

}


/*=========================================================================
CARD
=========================================================================*/

.auth-card{

    position:relative;

    z-index:2;

    width:100%;

    max-width:360px;

    background:linear-gradient(180deg,#162236,#10192a);

    border:1px solid var(--auth-border);

    border-radius:18px;

    padding:22px;

    box-shadow:

    0 18px 45px rgba(0,0,0,.40);

}


/*=========================================================================
BRAND
=========================================================================*/

.auth-brand{

    display:flex;

    flex-direction:column;

    align-items:center;

    margin-bottom:18px;

}


/*=========================================================================
LOGO
=========================================================================*/


.auth-logo img{

    width:150px;

    display:block;

}


/*=========================================================================
BADGE
=========================================================================*/

.auth-badge{

    padding:5px 12px;

    border-radius:30px;

    background:rgba(45,124,255,.10);

    border:1px solid rgba(45,124,255,.20);

    color:#89b7ff;

    font-size:10px;

    font-weight:700;

    letter-spacing:.8px;

}


/*=========================================================================
HEADER
=========================================================================*/

.auth-card-top{

    text-align:center;

    margin-bottom:18px;

}

.auth-label {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    margin-bottom: 10px;
}



.auth-card-top p{

    font-size:10px;

    color:var(--auth-muted);

    line-height:1.5;

}


/*=========================================================================
MESSAGE
=========================================================================*/

.auth-message{

    display:none;

    padding:10px 12px;

    border-radius:12px;

    font-size:11px;

    margin-bottom:14px;

}


/*=========================================================================
MOBILE
=========================================================================*/

@media(max-width:480px){

    .auth-card{

        max-width:340px;

        padding:18px;

    }

    .auth-logo img{

        width:105px;

    }

    .auth-card-top h2{

        font-size:19px;

    }

}   
/*=========================================================================
FORM
=========================================================================*/

#loginForm{

    display:flex;

    flex-direction:column;

    gap:14px;

}


/*=========================================================================
FIELD
=========================================================================*/

.auth-field{

    display:flex;

    flex-direction:column;

    gap:6px;

}

.auth-field label{

    font-size:11px;

    font-weight:600;

    color:#cfd9eb;

    letter-spacing:.2px;

}


/*=========================================================================
INPUT
=========================================================================*/

.auth-input{

    display:flex;

    align-items:center;

    height:44px;

    background:#0c1524;

    border:1px solid rgba(255,255,255,.06);

    border-radius:12px;

    transition:.20s;

}

.auth-input:hover{

    border-color:rgba(255,255,255,.12);

}

.auth-input:focus-within{

    border-color:#2d7cff;

    box-shadow:0 0 0 3px rgba(45,124,255,.12);

}

.auth-input svg{

    width:16px;

    height:16px;

    margin-left:14px;

    color:#7083a3;

    flex-shrink:0;

}

.auth-input input{

    flex:1;

    border:none;

    outline:none;

    background:none;

    color:#ffffff;

    font-size:13px;

    padding:0 12px;

}

.auth-input input::placeholder{

    color:#7083a3;

}


/*=========================================================================
PASSWORD TOGGLE
=========================================================================*/

.auth-toggle{

    width:42px;

    height:42px;

    border:none;

    background:none;

    display:flex;

    align-items:center;

    justify-content:center;

    cursor:pointer;

    color:#7083a3;

    transition:.20s;

}

.auth-toggle svg{

    width:16px;

    height:16px;

    margin:0;

}

.auth-toggle:hover{

    color:#ffffff;

}


/*=========================================================================
OPTIONS
=========================================================================*/

.auth-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin-top:-2px;

}


/*=========================================================================
CHECKBOX
=========================================================================*/

.auth-check{

    display:flex;

    align-items:center;

    gap:6px;

    cursor:pointer;

    font-size:11px;

    color:#8a9ab5;

}

.auth-check input{

    width:14px;

    height:14px;

    accent-color:#2d7cff;

}


/*=========================================================================
FORGOT
=========================================================================*/

.auth-forgot{

    color:#8fb7ff;

    text-decoration:none;

    font-size:11px;

    font-weight:600;

    transition:.2s;

}

.auth-forgot:hover{

    color:#ffffff;

}


/*=========================================================================
BUTTON
=========================================================================*/

.auth-submit{

    height:44px;

    margin-top:2px;

    border:none;

    border-radius:12px;

    background:linear-gradient(135deg,#2d7cff,#4d95ff);

    color:#ffffff;

    font-size:13px;

    font-weight:700;

    display:flex;

    align-items:center;

    justify-content:center;

    gap:8px;

    cursor:pointer;

    transition:.25s;

}

.auth-submit svg{

    width:16px;

    height:16px;

}

.auth-submit:hover{

    transform:translateY(-1px);

    box-shadow:0 10px 22px rgba(45,124,255,.28);

}

.auth-submit:active{

    transform:scale(.98);

}


/*=========================================================================
MESSAGE
=========================================================================*/

.auth-message{

    display:none;

    padding:10px 12px;

    border-radius:10px;

    font-size:11px;

    line-height:1.5;

}

.auth-message.success{

    display:block;

    color:#8df0bf;

    background:rgba(26,185,110,.12);

    border:1px solid rgba(26,185,110,.20);

}

.auth-message.error{

    display:block;

    color:#ffb7c0;

    background:rgba(255,85,110,.12);

    border:1px solid rgba(255,85,110,.20);

}


/*=========================================================================
FOOTER
=========================================================================*/

.auth-footer{

    margin-top:6px;

    text-align:center;

    font-size:11px;

    color:#8a9ab5;

}

.auth-footer a{

    color:#8fb7ff;

    text-decoration:none;

    font-weight:700;

}

.auth-footer a:hover{

    color:#ffffff;

}


/*=========================================================================
AUTOFILL
=========================================================================*/

.auth-input input:-webkit-autofill,

.auth-input input:-webkit-autofill:hover,

.auth-input input:-webkit-autofill:focus{

    -webkit-text-fill-color:#ffffff;

    -webkit-box-shadow:0 0 0 100px #0c1524 inset;

}


/*=========================================================================
RESPONSIVE
=========================================================================*/

@media(max-width:480px){

    .auth-options{

        flex-direction:column;

        align-items:flex-start;

        gap:10px;

    }

}