body{

    background:#edf2f8;

    font-family:"Segoe UI",sans-serif;

    margin:0;

    padding:0;

}

.login-container{

    min-height:100vh;

    display:flex;

    justify-content:center;

    align-items:flex-start;

    padding:40px 20px;

    overflow-y:auto;

}

.login-card{

    width:100%;

    max-width:520px;

    background:#fff;

    border-radius:20px;

    padding:40px;

    box-shadow:0 20px 50px rgba(0,0,0,.08);

}
@media (max-height:800px){

    .login-container{

        align-items:flex-start;

        padding:30px 20px;

    }

}

.logo{

    width:230px;

    max-width:100%;

    display:block;

    margin:0 auto 30px;

}

h2{

    text-align:center;

    color:#0d2344;

    font-weight:700;

    margin-bottom:10px;

}

.subtitle{

    text-align:center;

    color:#777;

    margin-bottom:35px;

}

label{

    font-weight:600;

    margin-bottom:8px;

    display:block;

}

.input-group{

    height:54px;

    margin-bottom:20px;

}

.input-group-text{

    background:#fff;

    border-right:none;

}

.form-control{

    height:54px;

    border-left:none;

    box-shadow:none!important;

}

.form-control:focus{

    border-color:#86b7fe;

}

.options{

    display:flex;

    justify-content:space-between;

    align-items:center;

    gap:10px;

    margin-bottom:30px;

    font-size:14px;

    flex-wrap:wrap;

}

.options a{

    text-decoration:none;

    color:#0d6efd;

}

.btn-login{

    width:100%;

    height:54px;

    border:none;

    border-radius:10px;

    background:#0d6efd;

    color:#fff;

    font-size:17px;

    font-weight:600;

    transition:.2s;

}

.btn-login:hover{

    background:#0b5ed7;

}

.divider{

    text-align:center;

    margin:35px 0;

    position:relative;

}

.divider::before,

.divider::after{

    content:"";

    position:absolute;

    width:42%;

    height:1px;

    background:#ddd;

    top:50%;

}

.divider::before{

    left:0;

}

.divider::after{

    right:0;

}

.divider span{

    background:#fff;

    padding:0 15px;

    color:#999;

}

.contact{

    text-align:center;

    font-size:15px;

}

.contact a{

    text-decoration:none;

}

.copyright{

    text-align:center;

    margin-top:30px;

    color:#888;

    font-size:13px;

}

/* ---------- Tablet ---------- */

@media (max-width:768px){

    .login-card{

        padding:40px 30px;

        border-radius:18px;

    }

    .logo{

        width:190px;

    }

}

/* ---------- Mobile ---------- */

@media (max-width:576px){

    .login-container{

        padding:20px 15px;

        align-items:flex-start;

    }

    .login-card{

        padding:30px 22px;

        border-radius:16px;

        margin-top:20px;

    }

    .logo{

        width:170px;

        margin-bottom:25px;

    }

    h2{

        font-size:2rem;

    }

    .subtitle{

        font-size:14px;

    }

    .options{

        flex-direction:column;

        align-items:flex-start;

        gap:8px;

    }

    .btn-login{

        font-size:16px;

    }

    .divider::before,

    .divider::after{

        width:35%;

    }

}