* {
    box-sizing: border-box;
}

body {
    margin: 0;

    font-family: Arial, Helvetica, sans-serif;

    background: #f4f7fb;

    color: #1f2937;
}


/* =========================
   Wrapper
========================= */

.forgot-wrapper {
    min-height: 100vh;

    padding: 30px 20px;

    display: flex;

    align-items: center;

    justify-content: center;
}


/* =========================
   Card
========================= */

.forgot-card {
    width: 100%;

    max-width: 950px;

    display: grid;

    grid-template-columns: 370px 1fr;

    background: #ffffff;

    border: 1px solid #e4e9ef;

    border-radius: 18px;

    overflow: hidden;

    box-shadow:
        0 15px 45px rgba(31, 41, 55, 0.08);
}


/* =========================
   Left Section
========================= */

.forgot-info {
    padding: 50px 35px;

    background: #f8fafc;

    border-right: 1px solid #e7ebf0;
}


.brand-icon {
    width: 60px;
    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;

    background: #eaf2ff;

    color: #0d6efd;

    border-radius: 14px;

    font-size: 25px;

    margin-bottom: 25px;
}


.forgot-info h1 {
    margin: 0 0 12px;

    font-size: 28px;

    font-weight: 700;

    color: #172033;
}


.forgot-info > p {
    margin: 0;

    font-size: 14px;

    line-height: 1.7;

    color: #6b7280;
}


/* =========================
   Info List
========================= */

.info-list {
    margin-top: 38px;

    display: flex;

    flex-direction: column;

    gap: 24px;
}


.info-item {
    display: flex;

    align-items: flex-start;

    gap: 13px;
}


.info-icon {
    width: 40px;
    height: 40px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;

    border: 1px solid #e2e7ed;

    border-radius: 10px;

    background: #ffffff;

    color: #0d6efd;

    font-size: 14px;
}


.info-item h6 {
    margin: 2px 0 4px;

    font-size: 14px;

    font-weight: 600;

    color: #273142;
}


.info-item span {
    font-size: 12px;

    line-height: 1.5;

    color: #7b8494;
}


/* =========================
   Form Section
========================= */

.forgot-form-section {
    padding: 55px;

    display: flex;

    flex-direction: column;

    justify-content: center;
}


.form-heading {
    margin-bottom: 30px;
}


.form-heading h2 {
    margin: 0 0 8px;

    font-size: 26px;

    font-weight: 700;

    color: #172033;
}


.form-heading p {
    margin: 0;

    font-size: 14px;

    color: #7b8494;
}


/* =========================
   Mobile Brand
========================= */

.mobile-brand-icon {
    display: none;

    width: 50px;
    height: 50px;

    align-items: center;

    justify-content: center;

    background: #eaf2ff;

    color: #0d6efd;

    border-radius: 12px;

    margin-bottom: 18px;
}


/* =========================
   Alert
========================= */

.alert {
    font-size: 13px;

    border-radius: 9px;
}


/* =========================
   Form
========================= */

.form-group {
    margin-bottom: 20px;
}


.form-group label {
    display: block;

    margin-bottom: 8px;

    font-size: 13px;

    font-weight: 600;

    color: #374151;
}


/* =========================
   Input
========================= */

.input-box {
    height: 50px;

    display: flex;

    align-items: center;

    border: 1px solid #dce2e9;

    border-radius: 9px;

    background: #ffffff;

    transition: 0.2s ease;
}


.input-box > i {
    width: 46px;

    text-align: center;

    color: #8a94a4;

    font-size: 14px;
}


.input-box .form-control {
    height: 100%;

    padding: 0 12px 0 0;

    border: 0;

    outline: none;

    box-shadow: none;

    font-size: 13px;

    color: #273142;
}


.input-box .form-control::placeholder {
    color: #a4acb8;
}


.input-box:focus-within {
    border-color: #86b7fe;

    box-shadow:
        0 0 0 3px rgba(13, 110, 253, 0.08);
}


/* =========================
   Continue Button
========================= */

.continue-btn {
    width: 100%;

    height: 50px;

    margin-top: 5px;

    border-radius: 9px;

    font-size: 14px;

    font-weight: 600;
}


/* =========================
   Login Link
========================= */

.login-link {
    margin-top: 22px;

    display: flex;

    align-items: center;

    justify-content: center;

    gap: 5px;

    font-size: 13px;

    color: #7b8494;
}


.login-link a {
    color: #0d6efd;

    font-weight: 600;

    text-decoration: none;
}


.login-link a:hover {
    text-decoration: underline;
}


/* =========================
   Tablet
========================= */

@media (max-width: 991px) {

    .forgot-card {
        max-width: 700px;

        grid-template-columns: 1fr;
    }


    .forgot-info {
        padding: 35px;

        border-right: 0;

        border-bottom: 1px solid #e7ebf0;
    }


    .info-list {
        margin-top: 25px;

        display: grid;

        grid-template-columns: repeat(3, 1fr);

        gap: 15px;
    }


    .forgot-form-section {
        padding: 40px 50px;
    }

}


/* =========================
   Mobile
========================= */

@media (max-width: 767px) {

    .forgot-wrapper {
        padding: 18px 12px;
    }


    .forgot-card {
        border-radius: 14px;
    }


    .forgot-info {
        display: none;
    }


    .forgot-form-section {
        padding: 35px 25px;
    }


    .mobile-brand-icon {
        display: flex;
    }


    .form-heading h2 {
        font-size: 23px;
    }

}


/* =========================
   Small Mobile
========================= */

@media (max-width: 480px) {

    .forgot-form-section {
        padding: 30px 18px;
    }


    .form-heading h2 {
        font-size: 21px;
    }


    .login-link {
        flex-direction: column;

        gap: 3px;
    }

}