.base-input {
    background: transparent !important;
    border: none !important;
    border-bottom: 1px solid rgba(64, 50, 37, 0.40) !important;
    width: 100%;
}

.base-input-label {
    width: 100%;
}

.base-input-label input, .base-input-label textarea {
    margin-top: 10px;
}

.base-input:focus {
    box-shadow: none;
    outline: none;
}

.base-checkbox .base-checkbox__body {
    display: flex;
    align-items: center;
}

.base-checkbox .base-checkbox__body > p {
    max-width: 340px;
}

.base-checkbox input {
    display: none;
}

.base-checkbox input:checked + .base-checkbox__body .base-checkbox__cell {
    background: var(--main-color);
    border-color: var(--main-color);
}

.base-checkbox__cell .base-checkbox__checkmark {
    opacity: 0 !important;
    transition: all 0.2s ease-in-out;
    color: #ffffff;
}

.base-checkbox input:checked + .base-checkbox__body .base-checkbox__cell .base-checkbox__checkmark {
    opacity: 1 !important;
}

.base-checkbox a {
    text-decoration: underline;
}

.base-checkbox .base-checkbox__cell {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    min-width: 24px;
    height: 24px;
    min-height: 24px;
    border: 2px solid var(--main-color);
    border-radius: 2px;
    margin-right: 15px;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
}

.base-input-error {
    color: #ff0000;
    font-size: 14px;
    margin-top: 2px;
    display: block;
}

label {
    font-weight: 400;
}
