/* =========================
   PAGE
========================= */

.login-page{
    min-height:100vh;

    display:flex;
    align-items:center;
    justify-content:center;

    padding:40px;

    background:#f5f7fb;
}


/* =========================
   CARD
========================= */

.login-card{
    width:100%;
    max-width:430px;

    padding:45px;

    background:#fff;

    border-radius:22px;

    box-shadow:
        0 15px 40px rgba(0,0,0,.08);
}


/* =========================
   HEADER
========================= */

.login-header{
    margin-bottom:35px;

    text-align:center;
}

.login-logo{
    width:78px;
    height:78px;

    margin:0 auto 18px;

    display:flex;
    align-items:center;
    justify-content:center;

    border-radius:50%;

    color:#fff;
    background:#0d6efd;

    font-size:34px;
}

.login-title{
    margin:0;

    font-size:28px;
    font-weight:700;
}

.login-subtitle{
    margin-top:8px;
    margin-bottom:0;

    color:#6c757d;
}


/* =========================
   ALERT
========================= */

.login-alert{
    display:flex;
    align-items:center;
    gap:10px;

    border-radius:10px;
}


/* =========================
   FORM
========================= */

.form-label{
    margin-bottom:8px;

    font-weight:600;
}

.input-modern{

    border-radius:12px;

    overflow:hidden;
}

.input-modern .input-group-text{

    background:#f8f9fa;

    border:none;
}

.input-modern .form-control{

    border:none;

    box-shadow:none;

    height:50px;
}

.input-modern .btn{

    border:none;

    background:#f8f9fa;
}


/* =========================
   BUTTON
========================= */

.login-button{

    width:100%;

    height:50px;

    border-radius:12px;

    font-size:15px;
    font-weight:600;
}

.login-button i{
    margin-right:6px;
}