.main_wrapper {
    display: grid;
    grid-template-rows: 1fr;
    grid-template-columns: 1fr;
    min-height: calc(100vh - 190px);
}
.page-main {
    margin: auto;
}
.page-main .section_wrapper {
    width: 100%;
    display: grid;
    grid-template-columns: 1fr;
    column-gap: 10px;
}

.page-main .section_wrapper section {
    background-color: unset;
    justify-content: center;
    width: 450px;
    min-height: unset;
    height: max-content;
    justify-self: center;
    align-self: center;
    border: 1px solid var(--color-primary-container);
    border-radius: 8px;
    border-top-right-radius: 0;
    row-gap: 50px;
    padding: var(--padding-m);
    background-color: var(--color-white);
}
.page-main .section_wrapper section .section_header {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    color: var(--color-primary);
    white-space: nowrap;
    word-break: keep-all;
}
.page-main .section_wrapper section .section_header span {
    font-size: 2rem;
    font-weight: 700;
}
section .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 160px;
}
section .logo img {
    max-width: 100%;
}
.page-main .section_wrapper section .login_form {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.page-main .section_wrapper section .login_form > label p {
    padding-bottom: 5px;
}
.page-main .section_wrapper section .login_form input[type='text'],
.page-main .section_wrapper section .login_form input[type='password'] {
    width: 100%;
    height: 38px;
}
.checkbox input {
    display: none;
}
.checkbox input ~ span {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px;
    height: 29px;
}

.checkbox input ~ span::before {
    content: 'check_box_outline_blank';
    font-family: 'Material Icons';
    font-size: 1.2rem;
    font-weight: 400;
    padding-right: 10px;
    padding-left: 5px;
    color: var(--color-on-primary-containerrimary);
}
.checkbox input:checked ~ span::before {
    content: 'check_box';
    font-weight: 400;
    font-family: 'Material Icons';
    padding-right: 10px;
    padding-left: 5px;
    color: var(--color-on-primary-containerrimary);
    font-size: 1.2rem;
}
.checkbox input:checked ~ span {
    background-color: var(--color-secondary-container);
}
section .button_wrap--bottom {
    margin-top: unset;
    flex-direction: column;
    padding: unset;
    row-gap: 30px;
    padding-bottom: 50px;
}
section .button_wrap--bottom a {
    cursor: pointer;
    font-size: 0.8rem;
}
section .button_wrap--bottom a:hover {
    color: var(--color-primary);
}
section .button_wrap--bottom button {
    width: 100%;
    max-height: 58px;
    min-height: 58px;
    font-size: 1.2rem;
    border-radius: 8px;
}
.button_wrap .btn {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
