/* ==========================================================
   ITOS Authentication
   Version 2.1
========================================================== */

.itos-auth{
    min-height:100vh;
    display:grid;
    grid-template-columns:42% 58%;
}

/* ==========================================================
   LEFT PANEL
========================================================== */

.itos-auth-left{
    background-image:url("../../images/backgrounds/login-bg.jpg");
    background-size:cover;
    background-position:center;
    background-repeat:no-repeat;
    position:relative;
}

.itos-auth-overlay{
    min-height:100vh;
    background:linear-gradient(
        135deg,
        rgba(255,255,255,.82),
        rgba(255,255,255,.68)
    );
    display:flex;
    align-items:center;
}

.itos-auth-content{
    width:100%;
    max-width:560px;
    margin:auto;
    padding:70px;
}

.itos-logo{
    display:block;
    width:180px;
    max-width:100%;
    height:auto;
    margin-bottom:40px;
}

.itos-title{
    font-size:44px;
    line-height:1.15;
    font-weight:700;
    margin-bottom:18px;
    color:#111;
}

.itos-tagline{
    font-size:22px;
    font-weight:600;
    color:var(--primary);
    margin-bottom:30px;
}

.itos-description{
    font-size:17px;
    line-height:1.9;
    color:#555;
    margin-bottom:35px;
}

.itos-features{
    list-style:none;
}

.itos-features li{
    display:flex;
    align-items:center;
    margin-bottom:18px;
    font-size:16px;
}

.itos-features li::before{
    content:"✓";
    width:26px;
    height:26px;
    margin-right:14px;
    border-radius:50%;
    background:var(--primary);
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:13px;
    flex-shrink:0;
}

.itos-version{
    margin-top:45px;
    color:#666;
    font-size:14px;
}

/* ==========================================================
   RIGHT PANEL
========================================================== */

.itos-auth-right{
    display:flex;
    justify-content:center;
    align-items:center;
    background:#ffffff;
    padding:60px;
}

.itos-auth-card{
    width:100%;
    max-width:430px;
}

.itos-panel{
    padding:42px;
    border-radius:24px;
    background:#fff;
    box-shadow:0 15px 50px rgba(0,0,0,.08);
}

.itos-login-header{
    margin-bottom:35px;
}

.itos-login-header h2{
    font-size:30px;
    margin-bottom:8px;
}

.itos-login-header p{
    color:#777;
    font-size:15px;
}

label{
    display:block;
    font-weight:600;
    margin-bottom:10px;
}

input{
    width:100%;
    padding:15px 18px;
    border:1px solid #E5E7EB;
    border-radius:12px;
    font-size:15px;
    transition:.25s;
}

input:focus{
    border-color:var(--primary);
    box-shadow:0 0 0 4px rgba(236,38,143,.12);
}

.itos-remember{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin:28px 0;
    font-size:14px;
    gap:12px;
}

.itos-remember label{
    display:flex;
    align-items:center;
    gap:8px;
    margin:0;
}

.itos-remember input{
    width:auto;
}

.itos-button-primary{
    width:100%;
    border:none;
    padding:16px;
    border-radius:12px;
    cursor:pointer;
    color:#fff;
    font-weight:600;
    font-size:16px;
    background:linear-gradient(
        135deg,
        #EC268F,
        #C71F79
    );
    transition:.3s;
}

.itos-button-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(236,38,143,.35);
}

/* ==========================================================
   TABLET
========================================================== */

@media (max-width:992px){

    .itos-auth{
        grid-template-columns:1fr;
    }

    .itos-auth-left{
        min-height:320px;
    }

    .itos-auth-overlay{
        min-height:320px;
    }

    .itos-auth-content{
        max-width:100%;
        padding:40px 30px;
    }

    .itos-logo{
        width:160px;
        margin-bottom:28px;
    }

    .itos-title{
        font-size:34px;
    }

    .itos-tagline{
        font-size:18px;
        margin-bottom:0;
    }

    .itos-description,
    .itos-features,
    .itos-version{
        display:none;
    }

    .itos-auth-right{
        padding:35px 20px 50px;
    }

}

/* ==========================================================
   MOBILE
========================================================== */

@media (max-width:576px){

    .itos-auth-left{
        min-height:220px;
    }

    .itos-auth-overlay{
        min-height:220px;
    }

    .itos-auth-content{
        padding:30px 20px;
    }

    .itos-logo{
        width:140px;
        margin-bottom:20px;
    }

    .itos-title{
        font-size:28px;
        line-height:1.2;
    }

    .itos-tagline{
        font-size:16px;
    }

    .itos-auth-right{
        padding:20px 15px 35px;
    }

    .itos-panel{
        padding:24px;
        border-radius:18px;
    }

    .itos-login-header h2{
        font-size:24px;
    }

    .itos-remember{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }

}