/* forgot page css */

:root {
    --sec-p: 16px;
}

@media screen and (min-width: 480px) {
    :root {
        --sec-p: 16px;
    }
}

#forgot-page {
    margin-top: 12px;
    margin-bottom: 12px;
    background: #fff;
    text-align: center;

    section {
        width: 100%;
    }

    .containe-fluid {
        max-width: 1280px;
        width: 100%;
        margin: 0 auto;
        padding: 12px var(--sec-p);
        display: grid;
        justify-items: center;
    }

    .flex {
        display: flex;
    }

    .grid {
        display: grid;
    }

    .gap-2 {
        gap: 8px;
    }

    .gap-3 {
        gap: 12px;
    }

    .gap-18 {
        gap: 18px;
    }

    .gap-6 {
        gap: 24px;
    }

    h1 {
        font-size: 24px;
        font-weight: 500;
        line-height: 28px;
    }

    p.h1_p {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }

    section {
        padding: 32px 0;
        display: grid;
        gap: 32px;
    }

    .forget-section > form {
        padding: unset;
        max-width: 392px;
        padding: 0 var(--sec-p);
    }

    label {
        display: grid;
        gap: 8px;
        text-align: left;
        width: 100%;
        font-size: 16px;
        font-weight: 500;
        line-height: 20px;

        input.text-value {
            font-size: 16px;
            padding: 10px 12px 10px 12px;
            border-radius: 4px;
            border: 1px solid #e2e2e2;
            height: 40px;
        }
    }

    a {
        font-size: 14px;
        font-weight: 500;
        line-height: 20px;
        margin-left: auto;
        color: #007aff;
    }
    a:hover {
        color: #0057ef;
    }

    .submit-btn {
        width: 100%;
        padding: 8px 24px 8px 24px;
        border-radius: 4px;
        color: #fff;
        background: #007aff;
        border: unset;
        outline: unset;
        height: 40px;
        cursor: pointer;
        margin-top: 22px;
    }
    .submit-btn:hover {
        background: #0057ef;
    }

    .register {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
    .read {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
    }
    form {
        position: relative;
    }
    #form-error-message {
        text-align: left;
        position: absolute;
        left: 0;
        bottom: -26px;
    }
    #loading {
        font-size: 0.75rem;
        color: #14b8a6;
        text-align: left;
        position: absolute;
        left: 0;
        bottom: -26px;
    }
    #resend-email {
        font-size: 0.75rem;
        color: #14b8a6;
        text-align: left;
        position: absolute;
        bottom: 90px;
        left: 16px;
    }
    .heading-container {
        display: grid;
        justify-items: center;
        gap: 12px;
        margin-bottom: 30px;
    }
    .resend-btn {
        margin-top: 0;
    }
    .light-text {
        font-size: 14px;
        font-weight: 400;
        line-height: 20px;
        color: #9b9faa;
    }
    .hidden {
        display: none;
    }
    .visible {
        display: block;
    }
    .w-full {
        width: 100%;
    }
}
