body {
    font-family: 'Inter', sans-serif;
    color: rgb(27,31,82);
    font-size: 16px;
}
.background-blue{
    background-color: rgb(27,31,82);
}
.background-green{
    background-color: rgb(64, 169, 56);
}
.background-grey{
    background-color: rgb(244, 244, 244);
}
.text-blue{
    color: rgb(27,31,82);
}
header{
    background-color: #FFFFFF;
}
h1, h2{
    font-weight: 800;
}
.bold-text{
    font-weight: 800;
}
label{
    cursor: pointer;
}

.main-logo{
    width: 200px;
}

.hidden {
    display: none;
}

.error-msg {
    color: rgb(252, 94, 29);
}

.usps ul li::marker {
    content: "✓ ";
    color: rgb(252, 94, 29);
    font-size: 20px;
}

.usps ul li {
    font-weight: bold;
}

.gegevens-error {
    color: rgb(252, 94, 29);
    font-weight:bold;
    width: 100%;
    text-align: center;
}

@media (max-width: 575.98px) {
    .main-logo{
        width: 120px;
    }
}

@media (min-width: 576px) and (max-width: 767.98px) {
    .main-logo{
        width: 140px;
    }
}
@media (min-width: 768px) and (max-width: 992px) {
    .main-logo{
        width: 180px;
    }
}
.button-base{
    padding: 10px 12px;
    border: none;
    border-radius: 10px;
    min-width: 150px;
    transition: 0.3s all ease-in-out;
    cursor: pointer;
}
.button-base:hover:not(:disabled) {
    transform: scale(1.05);
}


.min-w-40{
    min-width: 40%;
}



.custom-checkbox {
    appearance: none;
    -webkit-appearance: none;
    background-color: #fff;
    border: 2px solid rgb(64, 169, 56);
    width: 25px !important;
    height: 25px;
    cursor: pointer;
    border-radius: 0;
    position: relative;
    flex-shrink: 0;
}
.custom-checkbox:checked::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 7px;
    height: 14px;
    border: solid rgb(64, 169, 56);
    border-width: 0 2px 2px 0;
    transform: translate(-50%, -50%) rotate(45deg);
}

.form-input {
    border: 1px solid rgb(64, 169, 56);
    border-radius: 5px;
    color: rgb(27,31,82);
    outline: none;
    padding: 10px 14px;
    width: 100%;
    background-color: transparent;
}
.form-input:focus {
    border: 1px solid rgb(93, 94, 96);
}
.select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

.form-select {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: transparent;
    border: 1px solid rgb(64, 169, 56);
    padding: 10px 30px 10px 14px;
    color: rgb(27,31,82);
    width: 100%;
    cursor: pointer;
    border-radius: 5px;
    outline: none;
}
input::placeholder {
    opacity: 0.5 !important;
    color: rgba(27,31,82, 0.7);

}
.form-select:focus {
    box-shadow: none;
}

.select-arrow {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    width: 18px;
    height: 18px;
    pointer-events: none;
    transition: transform 0.3s ease;
}

.select-wrapper:has(.form-select:focus) .select-arrow {
    transform: translateY(-50%) rotate(180deg);
}
.signature-container {
    border: 1px solid #ccc;
    width: 500px;
    height: 200px;
}


@media (max-width: 576px) {
    .signature-container {
        width: 300px;
    }
}

@media (max-width: 576px) {
    body {
        font-size: 12px;
    }
    h1 {
        font-size: 1.5rem;
    }

    h2 {
        font-size: 1.25rem;
    }
    h3 {
        font-size: 1.1rem;
    }
    h4 {
        font-size: 1rem;
    }
    h5 {
        font-size: 1rem;
    }
    .form-select{
        font-size: 12px;
    }
}

button:disabled{
    opacity: 0.7;
}
.border-radius-10{
    border-radius: 10px;
}
.border-radius-6{
    border-radius: 6px;
}
.custom-radio {
    appearance: none; -webkit-appearance: none; background-color: #fff;
    border: 2px solid rgb(64, 169, 56); width: 22px; height: 22px; border-radius: 50%;
    cursor: pointer; position: relative; margin-top: 2px; flex-shrink: 0;
}
.custom-radio:checked::after {
    content: ''; position: absolute; top: 50%; left: 50%;
    width: 10px; height: 10px; background: rgb(64, 169, 56); border-radius: 50%;
    transform: translate(-50%, -50%);
}
.border-left-green{
    border-left: 1px solid rgb(64, 169, 56);
}
.border-top-green{
    border-top: 1px solid rgb(64, 169, 56);
}