.form-background{
    background-color: var(--primary-10);
}

.form-container{
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.form-topliner{
    color: var(--text-body, #000);
    text-align: center;
    font-family:var(--primary-font);
    font-size: var(--text-display, 24px);
    font-style: italic;
    font-weight: 500;
    line-height: 150%;
    margin-bottom: var(--space-xs);
}

.form-headline{
    color: var(--text-title, #000);
    text-align: center;
    font-family: "Garamond BE";
    font-size: var(--h2, 40px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%; /* 48px */
    text-transform: uppercase;
    margin-bottom: var(--space-2xl);
}

.form-copy{
    color: var(--text-body, #000);
    text-align: center;
    font-family:var(--primary-font);
    font-size: var(--text-display, 24px);
    font-style: italic;
    font-weight: 700;
    line-height: 150%; /* 36px */
    text-decoration-line: underline;
    text-decoration-style: solid;
    text-decoration-skip-ink: none;
    text-decoration-thickness: auto;
    text-underline-offset: auto;
    text-underline-position: from-font;
    margin-bottom: 40px;
}

.form-inner{
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.headline-innerform{
    color: var(--text-title, #2F2F2F);
    text-align: center;
    font-family: "Garamond BE";
    font-size: var(--h3, 36px);
    font-style: normal;
    font-weight: 400;
    line-height: 120%;
}

.form-doubleContent{
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

.form-label{
    color: var(--text-body, #000);
    font-family:var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 8px;
}

.input-feld{
    width: 100%;
    height: 48px;
    padding: 12px;
    border: 1px solid black;
    box-sizing: border-box;
    background-color: transparent;
    font-family: 'Roboto';
}

.upload-format{
    color: var(--text-body, #000);
    text-align: center;
    font-family:var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-top: 7px;
}

/*Bon Upload*/
#form.form-1 .bon-upload-container{
    padding-top: 24px; 
}

#form.form-1 .bon-copy{
    color: var(--primary);
    text-align: center;
    font-family: var(--primary-font);
    font-size: var(--text, 16px);
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    padding-bottom: var(--space-xl);
}

.hidden-input {
    display: none;
}

.uploadbutton-container{
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100%; 
    padding-bottom: 24px;
}

.uploadbutton{
    padding: 12px 24px;
    color: black; 
    border: black 1px solid;
    display: flex;
    width: auto;
    gap: var(--space-3xs);
    display: flex;
    justify-content: center; 
    align-items: center; 
    height: 100%; 
    cursor: pointer;
}

.uploadtext{
    color: black; 
    font-family: var(--primary-font);
    font-size: 16px;
    font-style: normal;
    font-weight: 700;
    line-height: 150%; /* 24px */
}

/*Custo Checkbox*/
.inputradio-flex{
    display: flex;
    gap: 8px;
}

.custom-checkbox {
    appearance: none; 
    width: 20px;
    height: 20px;
    border: 1px solid black; 
    border-radius: 4px;
    display: inline-block;
    position: relative;
    cursor: pointer;
    background-color: transparent;
    transition: all 0.3s ease;
}

.custom-checkbox:hover {
    border-color: black;
}

.custom-checkbox:focus {
    outline: none;
}

.custom-checkbox:checked {
    background-color: var(--primary);
    border-color: var(--primary);
}

.custom-checkbox:checked::after {
    content: "✔";
    color: white;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.inputtext{
    color: var(--text-body, #000);
    font-family:var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.form-link{
    text-decoration: underline;
    color: black;
    color: var(--text-body, #000);
    font-family:var(--primary-font);
    font-size: 18px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.error{
    color: var(--primary);
    font-family:var(--primary-font);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 160%;
    margin-bottom: 8px;
}