/* ===================================== */
/* LOGIN RESPONSIVE MONARKA */
/* ===================================== */


/* ===================================== */
/* TABLETS */
/* ===================================== */

@media screen and (max-width:992px){

    .login-box{

        width:90% !important;

    }

}


/* ===================================== */
/* MOBILE */
/* ===================================== */

@media screen and (max-width:768px){

    /* ================= HEADER ================= */

    header{

        position:fixed !important;

        top:0;
        left:0;

        width:100%;

        z-index:9999;

        padding:18px 20px !important;

        display:flex;

        justify-content:space-between;
        align-items:center;

        background:rgba(0,0,0,0.30);

        backdrop-filter:blur(15px);

        -webkit-backdrop-filter:blur(15px);

        box-shadow:0 5px 20px rgba(0,0,0,0.25);

    }

    .logo{

        display:flex;

        align-items:center;

    }

    .logo img{

        width:95px !important;

        height:auto !important;

    }

    /* MENU */

    .menu-toggle{

        display:flex !important;

        justify-content:center;
        align-items:center;

        font-size:42px;

        color:white;

        cursor:pointer;

        position:absolute;

        top:10px;
        right:25px;

        z-index:2000;

    }

    nav{

        display:none;

        position:absolute;

        top:95px;
        right:20px;

        width:280px;

        flex-direction:column;

        justify-content:center;
        align-items:center;

        gap:18px;

        padding:22px;

        border-radius:28px;

        background:rgba(0,0,0,0.35);

        backdrop-filter:blur(18px);

        -webkit-backdrop-filter:blur(18px);

        box-shadow:0 10px 30px rgba(0,0,0,0.35);

    }

    nav.show{

        display:flex !important;

        animation:menuFade 0.3s ease;

    }

    nav a{

        font-size:18px !important;

        width:100%;

        text-align:center;

    }


    /* ================= LOGIN ================= */

    .login-wrapper{

        width:100%;

        min-height:100vh;

        padding:140px 20px 60px !important;

    }
    .login-box{

        width:100% !important;

        padding:35px 25px !important;

        border-radius:35px !important;

        background:rgba(255, 255, 255, 0.151) !important;

        backdrop-filter:blur(18px);

    }

    .login-box h2{

        font-size:42px;

        margin-bottom:35px;

    }

    .login-box input{

        padding:18px !important;

        border-radius:18px !important;

        font-size:18px !important;

        margin-bottom:20px;

    }

    .login-box button{

        width:100% !important;

        padding:16px !important;

        border-radius:30px !important;

        font-size:18px !important;

        margin-top:10px;

    }

    .registro-texto{

        margin-top:30px;

        font-size:18px !important;

        line-height:1.7;

    }

}


/* ===================================== */
/* SMALL PHONES */
/* ===================================== */

@media screen and (max-width:480px){

    .login-box h2{

        font-size:36px;

    }

}

@keyframes menuFade{

    from{
        opacity:0;
        transform:translateY(-10px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}