/* ==========================================
   QiraatiD Login
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #F4F6F9;
    overflow: hidden;
}

/* ==========================================
   LEFT PANEL
========================================== */

.left-panel {

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;

    min-height: 100vh;

    background:
        linear-gradient(rgba(15, 118, 110, .30),
            rgba(15, 118, 110, .30)),
        url("../images/login.png");

    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

}

.left-panel::before {

    content: "";

    position: absolute;

    inset: 0;

    background: rgba(0, 0, 0, .18);

}

/* ==========================================
   BRAND
========================================== */

.left-content {

    position: relative;

    z-index: 2;

    text-align: center;

    color: #fff;

    padding: 30px;

}

.brand {

    display: flex;

    justify-content: center;

    align-items: center;

    gap: 18px;

}

.brand img {

    width: 85px;
    height: 85px;
    object-fit: contain;

}

.brand h1 {

    margin: 0;

    font-size: 60px;

    font-weight: 700;

    color: #fff;

}

.brand-subtitle {

    margin-top: 18px;

    font-size: 20px;

    color: #fff;

    max-width: 520px;

    margin-left: auto;
    margin-right: auto;

    line-height: 1.7;

}

/* ==========================================
   RIGHT PANEL
========================================== */

.login-box {

    width: 460px;

    background: #fff;

    padding: 45px;

    border-radius: 22px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.login-box h2 {

    font-size: 42px;

    font-weight: 700;

    color: #1F2937;

    margin-bottom: 5px;

}

.login-box p {

    color: #6B7280;

    font-size: 17px;

    margin-bottom: 28px;

}

/* ==========================================
   FORM
========================================== */

label {

    font-weight: 500;

    margin-bottom: 8px;

}

.form-control {

    height: 55px;

    border-radius: 12px;

    border: 1px solid #D1D5DB;

    box-shadow: none;

    padding: 12px 15px;

    font-size: 16px;

}

.form-control:focus {

    border-color: #0F766E;

    box-shadow: 0 0 0 .2rem rgba(15, 118, 110, .15);

}

/* ==========================================
   PASSWORD
========================================== */

.input-group .form-control {

    border-radius: 12px 0 0 12px;

}

.input-group button {

    width: 60px;

    border-radius: 0 12px 12px 0;

    border: 1px solid #D1D5DB;

    background: #fff;

}

.input-group button:hover {

    background: #F3F4F6;

}

/* ==========================================
   LOGIN BUTTON
========================================== */

.btn-login {

    width: 100%;

    height: 55px;

    border: none;

    border-radius: 12px;

    background: #0F766E;

    color: #fff;

    font-size: 18px;

    font-weight: 600;

    transition: .3s;

}

.btn-login:hover {

    background: #115E59;

    color: #fff;

    transform: translateY(-2px);

}

/* ==========================================
   LINKS
========================================== */

a {

    text-decoration: none;

    color: #2563EB;

}

a:hover {

    color: #1D4ED8;

}

/* ==========================================
   ALERT
========================================== */

.alert {

    border-radius: 12px;

}

/* ==========================================
   REMEMBER ME
========================================== */

.form-check-input {

    cursor: pointer;

}

.form-check-label {

    cursor: pointer;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px) {

    .left-panel {

        display: none !important;

    }

    .login-box {

        width: 95%;
        max-width: 470px;

        padding: 35px;

    }

    .login-box h2 {

        font-size: 36px;

    }

}

@media(max-width:576px) {

    body {

        overflow: auto;

    }

    .login-box {

        box-shadow: none;

        border-radius: 0;

        width: 100%;

        min-height: 100vh;

    }

}