.form-input {
    height: 48px;
    border: 1px solid #0000004D;
    width: 100%;
    border-radius: 4px;
    padding-left: 18px;
    outline: none;
    color: #000000;
    background-color: unset;
}
.form-input::placeholder {
    color: #00000080;
}
.custom-checkbox {
    margin-top: 16px;
    display: flex;
    align-items: center;
}
.custom-checkbox input {
    position: absolute;
    left: -9999px;
}
.custom-checkbox label {
    position: relative;
    cursor: pointer;
    padding-left: 37px;
    font-size: 12px;
    min-height: 26px;
    display: flex;
    align-items: center;
    gap: 6px;
}
.custom-checkbox label a {
    color: #000000;
    text-decoration: underline;
}
.custom-checkbox > input:checked+label:before,
.custom-checkbox > input:not(:checked)+label:before {
    content: '';
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid #0000004D;
    left: 0;
    top: 0;
    background: unset;
    border-radius: 4px;
    transition: background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}
.custom-checkbox > input:checked+label:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 26px;
    height: 26px;
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
    background-image: url("/images/svg/check.svg");
}
.custom-checkbox.error > input+label:before {
    border-color: #dc3545;
}
.custom-checkbox.error label {
    color: #dc3545;
}