/*
==========================================================

PremiumZone

Version :
0.0.0

File :
assets/auth/login.css

Description :
PremiumZone Login

==========================================================
*/

.pz-auth{

    position:fixed;

    inset:0;

    display:flex;

    justify-content:center;

    align-items:center;

    pointer-events:none;

    z-index:1000;

}

.pz-auth-login{

    pointer-events:auto;

    min-width:220px;

    padding:14px 24px;

    border:2px solid #00eaff;

    background:#000;

    color:#00eaff;

    font-family:"JetBrains Mono",monospace;

    font-size:15px;

    font-weight:700;

    letter-spacing:1px;

    cursor:pointer;

    transition:.2s;

}

.pz-auth-login:hover{

    background:#00eaff;

    color:#000;

}

.pz-auth-login:active{

    transform:scale(.96);

}