/* ==========================================
   AUTH MODAL
========================================== */

.auth-modal{

    position:fixed;
    inset:0;

    background:rgba(0,0,0,.55);

    display:none;

    justify-content:center;
    align-items:center;

    z-index:99999;

    animation:fadeIn .2s ease;
}

.auth-modal.active{

    display:flex;

}

/* ==========================================
   BOX
========================================== */

.auth-box{

    width:420px;
    max-width:92%;

    background:#fff;

    border-radius:18px;

    padding:30px;

    position:relative;

    box-shadow:
    0 20px 60px rgba(0,0,0,.18);

    animation:popup .25s ease;
}

/* ==========================================
   CLOSE
========================================== */

.auth-close{

    position:absolute;

    top:18px;
    right:18px;

    width:34px;
    height:34px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    background:#f5f5f5;

    color:#666;

    cursor:pointer;

    font-size:22px;
    font-weight:bold;

    transition:.2s;

}

.auth-close:hover{

    background:#ececec;

    color:#111;

}

/* ==========================================
   TITLE
========================================== */

.auth-box h2{

    margin:0 0 25px;

    text-align:center;

    font-size:24px;

    color:#1f2937;

}

/* ==========================================
   INPUT
========================================== */

.auth-box input{

    width:100%;

    padding:13px 15px;

    margin-bottom:15px;

    border:1px solid #d7dce4;

    border-radius:10px;

    font-size:15px;

    box-sizing:border-box;

    transition:.2s;

}

.auth-box input:focus{

    outline:none;

    border-color:#2F6DE1;

    box-shadow:
    0 0 0 4px rgba(47,109,225,.08);

}

/* ==========================================
   BUTTON
========================================== */

.auth-box button{

    width:100%;

    padding:14px;

    border:none;

    border-radius:10px;

    background:#2F6DE1;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;

}

.auth-box button:hover{

    background:#1e5cd2;

}

/* ==========================================
   LINK
========================================== */

.auth-box p{

    margin-top:18px;

    text-align:center;

    color:#666;

    font-size:14px;

}

.auth-box a{

    color:#2F6DE1;

    text-decoration:none;

    font-weight:600;

}

.auth-box a:hover{

    text-decoration:underline;

}

/* ==========================================
   ANIMATION
========================================== */

@keyframes popup{

    from{

        opacity:0;
        transform:translateY(15px);

    }

    to{

        opacity:1;
        transform:none;

    }

}

@keyframes fadeIn{

    from{

        opacity:0;

    }

    to{

        opacity:1;

    }

}

/* ==========================================
   MOBILE
========================================== */

@media(max-width:768px){

.auth-box{

    padding:22px;

}

.auth-box h2{

    font-size:22px;

}

}
.auth-btn{

    width:100%;

    padding:14px;

    border:none;

    border-radius:10px;

    background:#2F6DE1;

    color:#fff;

    font-size:15px;

    font-weight:600;

    cursor:pointer;

    transition:.2s;

}

.auth-btn:hover{

    background:#1e5cd2;

}
.auth-info{

    text-align:center;

    margin-bottom:25px;

}

.auth-icon{

    font-size:46px;

    margin-bottom:8px;

}

.auth-info h2{

    margin:0;

    color:#2F6DE1;

    font-size:28px;

    font-weight:700;

}

.auth-info p{

    margin-top:10px;

    color:#6b7280;

    font-size:15px;

    line-height:1.6;

}
