body {
    font-family: "Noto Sans", sans-serif;
}

.auth__layout-wrap {
    display: flex;
    justify-content: center;
    flex-direction: column;
    min-height: 100vh;
}

.auth__layout-body {
    padding: 80px 0;
}

.auth__layout-left-logo {
    max-width: 70px;
    width: 100%;
    margin-bottom: 10px;
    margin-top: -20px;
}

.auth__layout-left {
    margin-bottom: 40px;
}

.auth__layout-left-title {
    font-weight: 400;
    font-size: 28px;
    line-height: 1.2;
    color: #00a34a;
}

.auth__layout-left-title2 {
    font-weight: 600;
    font-size: 32px;
    line-height: 38px;
    color: #000;
}

.auth__layout-left-desc {
    font-weight: 400;
    font-size: 20px;
    line-height: 26px;
    color: #262626;
    max-width: 615px;
}

.auth__layout-left-img {
    max-width: 420px;
}

/* ---------- Form ---------- */

.form__section {
    background: white !important;
    padding: 40px;
    border-radius: 8px;
}

.form__title {
    font-weight: 600;
    font-size: 28px;
    line-height: 34px;
    color: #262626;
    text-align: center;
    margin-bottom: 20px;
}

.form__input-label {
    font-size: 18px;
    font-weight: 400;
    line-height: 24px;
    color: #262626;
    margin-bottom: 12px;
}

.form__input-main {
    width: 100%;
    border: none;
    outline: none;
    height: 40px;
    border-radius: 8px;
    background-color: #f7f8fa;
    font-size: 14px;
    font-weight: 400;
    color: #a2a8ae;
    padding: 0 10px;
    margin-bottom: 20px;
}

.form__submit-btn {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.2;
    color: #fff;
    text-align: center;
    height: 40px;
    border-radius: 8px;
    background-color: #00a34a;
    border: none;
    outline: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.google__login-btn {
    text-align: center;
    height: 40px;
    border-radius: 8px;
    background-color: #fff;
    border: none;
    outline: none;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #a2a8ae;
    margin-top: 15px;
}

.google__login-btn img {
    width: 20px;
    height: 20px;
    object-fit: contain;
}

.google__login-btn span {
    margin-left: 8px;
    display: block;
    margin-bottom: 0 !important;
    line-height: 1;
    font-size: 14px;
    font-weight: 400;
}

/* --------- Otp form --------- */
.otp .form__title {
    text-align: center;
    margin-bottom: 10px;
}

.form__text--black {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #262626;
    text-align: center;
}

.form__text--black span {
    color: #00a34a;
}

.form__text--green {
    font-size: 14px;
    line-height: 1.2;
    font-weight: 400;
    color: #00a34a;
    text-align: center;
}

.form__otp-code-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 272px;
    margin: 10px auto 15px;
}

.form__otp-code-input {
    max-width: 56px;
    height: 56px;
    border-radius: 8px;
    text-align: center;
    width: 100%;
    border: none;
    outline: none;
    background-color: #f2f2f2;
    font-size: 28px;
    display: flex;
    align-items: center;
    font-weight: 600;
}

.form__otp-code-input::-webkit-outer-spin-button,
.form__otp-code-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.otp .form__submit-btn {
    max-width: 272px;
    margin: 0 auto 20px;
}

.form__number-edit {
    background: #f2f2f2;
    padding: 20px 20px;
    text-align: center;
    border-radius: 8px;
}

.form__number-edit-title {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.2;
    color: #262626;
    text-align: center;
}

.form__number-edit-main {
    text-align: center;
    font-weight: 400;
    line-height: 1.2;
    font-size: 16px;
    color: #262626;
}

/* Responsive */

@media screen and (max-width: 767px) {
    .auth__layout-left a {
        display: block;
    }

    .auth__layout-left-logo {
        margin: 0 auto 10px;
        display: block;
        max-width: 120px;
    }

    .auth__layout-left-title {
        text-align: center;
    }

    .auth__layout-left-title2 {
        text-align: center;
    }

    .auth__layout-left {
        display: none;
    }

    .auth__layout-left-img {
        display: none;
    }

    .auth__layout-body {
        padding: 80px 0 100px;
    }
}