/* ==========================================
   QiraatiD Forgot Password Page
========================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background: #F4F6F9;
    overflow-x: 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/forgot.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);

}

.left-content {

    position: relative;

    z-index: 2;

    color: #fff;

    text-align: center;

}

.brand {

    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;

}

.brand img {

    width: 85px;

}

.brand h1 {

    margin: 0;

    font-size: 60px;

    font-weight: 700;

}

/* ==========================================
   FORGOT BOX
========================================== */

.forgot-box {

    width: 470px;

    background: #fff;

    padding: 45px;

    border-radius: 22px;

    box-shadow: 0 20px 45px rgba(0, 0, 0, .08);

}

.forgot-box h2 {

    font-size: 42px;

    font-weight: 700;

    color: #1F2937;

    line-height: 1.2;

}

.forgot-box p {

    color: #6B7280;

    margin-bottom: 25px;

}

/* ==========================================
   FORM
========================================== */

.form-label {

    font-weight: 600;

    margin-bottom: 8px;

}

.form-control {

    height: 55px;

    border-radius: 12px;

    border: 1px solid #D1D5DB;

    padding: 12px 15px;

    font-size: 16px;

    box-shadow: none;

}

.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;

}

/* ==========================================
   PASSWORD RULE
========================================== */

.password-rule {

    background: #F9FAFB;

    border: 1px solid #E5E7EB;

    border-radius: 12px;

    padding: 15px;

    margin-bottom: 20px;

}

.password-rule p {

    margin: 8px 0;

    font-size: 14px;

}

.password-rule .valid {

    color: #16A34A;

}

.password-rule .invalid {

    color: #EF4444;

}

/* ==========================================
   MATCH
========================================== */

#match {

    font-size: 14px;

    margin-bottom: 15px;

}

/* ==========================================
   BUTTON
========================================== */

.btn-success {

    height: 55px;

    border: none;

    border-radius: 12px;

    background: #0F766E;

    font-size: 18px;

    font-weight: 600;

    transition: .3s;

}

.btn-success:hover {

    background: #115E59;

}

.btn-success:disabled {

    background: #9CA3AF;

    cursor: not-allowed;

}

/* ==========================================
   ALERT
========================================== */

.alert {

    border-radius: 12px;

}

/* ==========================================
   LINK
========================================== */

a {

    text-decoration: none;

}

a:hover {

    text-decoration: underline;

}

/* ==========================================
   RESPONSIVE
========================================== */

@media(max-width:992px) {

    .left-panel {

        display: none !important;

    }

    .forgot-box {

        width: 95%;
        max-width: 480px;
        padding: 35px;

    }

    .forgot-box h2 {

        font-size: 34px;

    }

}