/*
==========================================================
LOGIN PAGE
==========================================================
*/

.uet-login-card{

    animation:uetLoginIn .6s ease;

}

/*
==========================================================
FORM
==========================================================
*/

.uet-login-form{

    margin-top:35px;

}

.uet-form-group{

    margin-bottom:26px;

}

.uet-form-group label{

    display:block;

    margin-bottom:12px;

    color:#CFCFCF;

    font-size:13px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:.8px;

}

.uet-form-group input{

    width:100%;

    height:60px;

    padding:0 22px;

    box-sizing:border-box;

    border-radius:16px;

    border:1px solid #282828;

    background:#121212;

    color:#FFF;

    font-size:16px;

    transition:.25s;

}

.uet-form-group input::placeholder{

    color:#666;

}

.uet-form-group input:hover{

    border-color:#404040;

}

.uet-form-group input:focus{

    outline:none;

    border-color:var(--uet-blue);

    box-shadow:

        0 0 0 2px rgba(0,183,255,.15),

        0 0 18px rgba(0,183,255,.28);

}

/*
==========================================================
PASSWORD
==========================================================
*/

.uet-password-wrapper{

    position:relative;

}

.uet-password-toggle{

    position:absolute;

    top:50%;

    right:18px;

    transform:translateY(-50%);

    background:none;

    border:none;

    cursor:pointer;

    color:#8A8A8A;

    font-size:18px;

    transition:.25s;

}

.uet-password-toggle:hover{

    color:#FFF;

}

/*
==========================================================
OPTIONS
==========================================================
*/

.uet-login-options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    margin:24px 0 34px;

    color:#C8C8C8;

    font-size:15px;

}

.uet-login-options label{

    display:flex;

    align-items:center;

    gap:10px;

    cursor:pointer;

}

.uet-login-options input[type="checkbox"]{

    width:18px;

    height:18px;

}

/*
==========================================================
BUTTON
==========================================================
*/

.uet-login-button{

    width:100%;

    height:64px;

    border:none;

    border-radius:18px;

    cursor:pointer;

    color:#FFF;

    font-size:17px;

    font-weight:700;

    letter-spacing:1px;

    text-transform:uppercase;

    background:

    linear-gradient(

        90deg,

        var(--uet-blue),

        #3B7EFF,

        #A857E7,

        var(--uet-pink)

    );

    background-size:220%;

    transition:.35s;

}

.uet-login-button:hover{

    background-position:right center;

    transform:translateY(-3px);

    box-shadow:

        0 0 30px rgba(0,183,255,.35),

        0 0 45px rgba(255,45,186,.25);

}

.uet-login-button:active{

    transform:translateY(0);

}

/*
==========================================================
BOTTOM LINKS
==========================================================
*/

.uet-login-links{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:18px;

    margin-top:34px;

}

.uet-login-links span{

    color:#A8A8A8;

}

.uet-login-links a{

    color:var(--uet-blue);

    text-decoration:none;

    transition:.25s;

}

.uet-login-links a:hover{

    color:#FFF;

}

/*
==========================================================
SOCIAL LINKS
==========================================================
*/

.uet-login-social{

    display:flex;

    justify-content:center;

    flex-wrap:wrap;

    gap:24px;

    margin-top:42px;

}

.uet-login-social a{

    color:#777;

    font-size:13px;

    text-decoration:none;

    text-transform:uppercase;

    letter-spacing:.8px;

    transition:.25s;

}

.uet-login-social a:hover{

    color:var(--uet-pink);

}

/*
==========================================================
ANIMATION
==========================================================
*/

@keyframes uetLoginIn{

    from{

        opacity:0;

        transform:translateY(30px) scale(.97);

    }

    to{

        opacity:1;

        transform:none;

    }

}