#account {
    padding: 40px 15px;
}

#accountWrap {
    max-width: 570px;
    margin: 0 auto;
}

#accountForm {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 8px;
    align-items: center;
    width: 100%;
}

.accountFormTitle {
    margin: 16px auto 0;
    font-size: 18px;
    font-weight: 600;
}

.accountFormTxt {
    margin: 4px auto;
    font-weight: 400;
    font-size: 12px;
}

.accountFormInput {
    width: 100%;
    display: block;
    padding: 8px 12px;
    color: #555555;
    border: 1px solid #e1e1e1;
    border-radius: 5px;
    font-size: 14px;
    background-color: white;
}

.accountFormInput:disabled {
    background-color: #e9ecef;
    opacity: .5;
}


.accountFormCheckbox {
    display: flex;
}

.accountFormCheckboxInput {
    opacity: 0;
    height: 0;
    width: 0;
    position: absolute;
}

.accountFormCheckboxBody {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    gap: 8px;
    cursor: pointer;
    transition: .3s ease;
}

.accountFormCheckboxBody:hover {
    cursor: pointer;
}

.accountFormCheckboxInput + .accountFormCheckboxBody {
    transition: .5s ease;
}


.accountFormCheckboxBodyBox {
    height: 20px;
    width: 20px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--black);
    padding: 1px;
}

.accountFormCheckboxInput + .accountFormCheckboxBody .accountFormCheckboxBodyBoxCheck {
    opacity: 0;
    transform: scale(.8);
    transition: .3s cubic-bezier(.25, .8, .25, 1);
}

.accountFormCheckboxInput:checked + .accountFormCheckboxBody .accountFormCheckboxBodyBoxCheck {
    opacity: 1;
    transform: scale(1);
}

.accountFormCheckboxBodyTxt {
    font-size: 14px;
    line-height: 1.4;
    text-align: left;
}

.accountFormCheckboxBodyTxt a {
    color: var(--red);
    text-decoration: underline;
}

.accountFormCheckboxBodyTxtSmall {
    display: block;
    font-size: 12px;
    line-height: 1.4;
}

.accountFormSubmit {
    margin-top: 20px;
}

.accountFormBottom {
    margin-top: 20px;
    font-size: 12px;
    font-weight: 400;
}

.accountFormBottom a {
    color: var(--red);
}

.accountFormBottom a:hover {
    text-decoration: underline;
}