:root {}

.main-wrapper::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100vw;
    height: 100vh;
    background-image: url("/public/images/static/login_image_1.jpg");
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    z-index: -1;
}

.login-form-wrapper {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    max-width: 28.125rem;
    width: 100%;
    height: auto;
    padding-top: 2rem;
    padding-left: 4rem;
    padding-right: 4rem;
    padding-bottom: 3rem;
    background-color: var(--color_white);
    border-radius: var(--curved);
    box-shadow: var(--shadow);
    overflow: hidden;
    z-index: 2;
}

.greeting-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 3rem;
}

.form-logo {
    width: 6rem;
    height: auto;
}

.form-logo img {
    width: 100%;
}

.form-title {
    color: var(--color_black);
    font-size: var(--font-size_head_2);
    font-weight: var(--font-weight_bold);
    line-height: var(--line-height_sm);
}

.login-form {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    row-gap: 1.25rem;
}

.user-type-wrapper {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    column-gap: 3rem;
    max-width: 100%;
    width: 100%;
}

.user-type-wrapper>div.check-box__a {
    flex: 1;
}

.user-type-wrapper>div.check-box__a label {

    max-width: unset;
    min-width: unset;
    /* width: auto; */

}

@media screen and (min-width: 768px) {}

@media screen and (min-width: 1440px) {}