.customer-register {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0px;
    gap: 24px;
    max-width: 620px !important;

    @media screen and (max-width: 767px) {
        max-width: unset !important;
        width: 100%;
    }

    .sign-in {
        font-style: normal;
        font-weight: 400;
        font-size: 12px;
        line-height: 120%;

        color: #020202;
    }

    p {
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;

        text-align: center;

        color: #020202;
        margin: 0;
    }

    .customer-login-form {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 24px;

        @media screen and (max-width: 767px) {
            width: 100%;
        }

    }

    .checkbox-group {
        display: flex;
        flex-direction: column;
        gap: 24px;

        div {
            display: flex;
            flex-direction: row;
            align-items: baseline;
        }

        border-bottom: 1px solid #E2E2E2;
        padding-bottom: 24px;

        label {
            font-style: normal;
            font-weight: 400;
            font-size: 16px;
            line-height: 120%;

            color: #020202;

            text-align: left;
        }

      input[type="checkbox"] {
        width: 13px;
        height: 13px;
        min-width: 13px;
        min-height: 13px;
      }
    }


    h1 {
        font-style: normal;
        font-weight: 700;
        font-size: 24px;
        line-height: 29px;

        letter-spacing: 0.1px;

        color: #020202;

        margin: 0;
        text-transform: uppercase;
    }

    form {
        margin: 0;
    }

    .wrapper-input {
        @media screen and (max-width: 767px) {
            width: 100%;
        }
    }

    form {
        display: flex;
        flex-direction: column;
        align-items: center;
        padding: 0px;
        gap: 12px;

        @media screen and (max-width: 767px) {
            width: 100%;
        }

        .select-field-group {
            display: flex;
            flex-direction: row;
            align-items: flex-start;
            padding: 0px;
            gap: 16px;

            width: 100%;

            .field__label {
                top: 5px;
                left: 12px;
            }
        }

        .field {
            margin: 0;

            @media screen and (max-width: 767px) {
                min-width: unset;
                width: 100%;
            }

            input {
                font-style: normal;
                font-weight: 400;
                font-size: 14px;
                line-height: 120%;
                letter-spacing: 1px;
                color: #737373;

                min-width: 600px;
                border: 1px solid #D9D9D9;

                @media screen and (max-width: 767px) {
                    min-width: unset;
                    width: 100%;
                }
            }

            select {
                min-height: 50px;

                font-family: var(--font-body-family);
                font-style: normal;
                font-weight: 400;
                font-size: 16px;
                line-height: 120%;

                color: #232936;
                padding-bottom: 0;
                background-color: #FFFFFF;

                border: 1px solid #D9D9D9;

                background-color: white;
            }

            .recover {
                position: absolute;
                right: 0;
                top: 50%;
                transform: translate(-50%, -50%);

                font-style: normal;
                font-weight: 400;
                font-size: 10px;
                line-height: 12px;

                text-align: right;

                color: #020202;
                text-decoration: none;
            }



            .divider {
                height: 18px;
                border: 1px solid #D9D9D9;
                position: absolute;
                right: 30px;
                top: 50%;
                transform: translate(-50%, -50%);

                @media screen and (max-width:767px) {
                    right: 30px;
                }
            }
        }

        button {
            padding: 0 16px;
            text-align: center;
            line-height: 44px;
            margin: 0 !important;
            background: transparent;
            border-radius: unset;
            border: 1px solid #EBC986;
            max-width: 190px;

            font-family: var(--font-body-family);
            font-style: normal;
            font-weight: 600;
            font-size: 14px;
            width: 100%;
            color: #171711;
            min-height: 45px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;

            &:hover {
                color: #fff;
                background-color: #ebc986;
            }
        }
    }

    .text-login {
        font-family: var(--font-body-family);
        font-style: normal;
        font-weight: 400;
        font-size: 16px;
        line-height: 120%;

        color: #020202;

        margin: 0;
    }

    .register-button {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 8px 24px;
        gap: 10px;

        min-width: 400px;
        min-height: 45px;

        /* Background/Primary */

        background: #F7F7EB;
        border: 1px solid #000000;
        border-radius: 1000px;

        font-family: var(--font-body-family);
        font-style: normal;
        font-weight: bold;
        font-size: 16px;
        line-height: 14px;
        /* identical to box height, or 88% */

        text-align: center;
        text-transform: uppercase;

        /* Grayscale/Black */

        color: #171711;

        text-decoration: none;

        @media screen and (max-width: 767px) {
            min-width: unset;
            width: 100%;
        }
    }
}

div:has(#recover:target) .customer-login-form {
    display: none !important;
}

.template-committe .section-register .customer-register {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.template-committe .section-register {
    background-color: #F7F7EB;
}

@media screen and (max-width: 640px) {
  body .image-with-text__heading {
    font-size: 32px;
  }
  body .image-with-text__content {
    padding: 20px 0;
  }
  body #register {
    width: 100%;
  }
}