.form-control {
    height: 3.75rem;
    padding: .4rem 1.5rem;
    font-size: var(--default-font-size);
    border-color: var(--brand-color);
    border-width: 2px;
    border-radius: 1rem;
    background-color: transparent;
}

.form-control::placeholder {
    color: #b7bdb6;
    font-weight: normal;
}

.custom-file {
    height: 44px;
    color: var(--brand-color);
    background-color: white;
    border: 2px solid var(--brand-color);
    border-radius: 0;
}

.custom-file-label {
    height: 44px;
    background-color: rgba(0, 0, 0, 0);
    font-weight: normal;
    text-align: left;
    border: none;
    border-radius: 0;
}

.custom-file-label::after {
    border-radius: 0;
}

.custom-file-input {
    font-size: 18px;
}

.custom-file-input~.custom-file-label::after {
    content: "Auswählen";
    right: -1px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    background-color: var(--brand-color);
}

.input-group-text {
    padding-top: 5px;
    padding-bottom: 5px;
    border-color: var(--brand-color);
    border-width: 2px;
    border-radius: 0;
    border-right: none;
    background-color: transparent;
}

.input-group>.form-control:not(:first-child) {
    border-left: none;
}

button.btn[type="submit"] {
    padding: 0 1.2rem .4rem;
    font-family: "Canoodle", serif;
    font-size: 2.5rem;
    color: var(--secondary-brand-color) !important;
    background-color: transparent;
    border: none !important;
    border-radius: 0;
    box-shadow: none !important;
}

button.btn[type="submit"]:active,
button.btn[type="submit"]:focus,
button.btn[type="submit"]:focus-visible,
button.btn[type="submit"]:focus-within {
    color: #ffffff !important;
    background-color: transparent;
    border: none !important;
    box-shadow: none !important;
}

.btn[type="submit"] {
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg width='337' height='66' xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='none' fill='%23DF2526' stroke='%23DF2526'%3E%3Cpath d='M62.82.836L10.947.011C8.252-.032 5.28-.008 3.254 1.245 1.057 2.605.777 4.908.704 6.967.214 20.968-1.4 39.807 2.91 53.48c.836 2.656 1.913 5.481 4.85 7.253 2.223 1.341 5.184 1.868 8.04 2.325 12.733 2.037 33.223.115 46.28.254 71.227.764 129.077-.764 200.668-.254 17.474.125 37.67-.736 55.143-.88 4.23-.035 8.76-.292 12.073-2.145 5.185-2.9 5.276-8.322 4.907-12.976-.838-10.595-1.679-21.19-2.517-31.784-.172-2.192.146-9.133-1.786-10.856-2.88-2.567-8.218-2.75-12.864-2.718-88.157.582-134.682 3.427-222.631-.891L62.82.836z' stroke-width='2'/%3E%3C/svg%3E");
}


.btn.btn-back {
    padding: .5rem 6rem;
    font-size: 1.4rem;
    font-weight: bold;
    text-decoration: none;
    color: #ffffff !important;
    background-color: var(--brand-color);
    opacity: .8;
    border: none !important;
    border-radius: 0;
    box-shadow: none !important;
}

.btn.btn-back:active,
.btn.btn-back:focus,
.btn.btn-back:focus-visible,
.btn.btn-back:focus-within {
    color: #ffffff !important;
    background-color: var(--brand-color);
    border: none !important;
    box-shadow: none !important;
}

.mat-checkbox {
    display: inline-flex;
    flex-wrap: wrap;
    position: relative;
    padding-left: 50px;
    margin-bottom: 8px;
    cursor: pointer;
    min-height: 52px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    align-items: center;
}

.mat-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
}

.mat-checkbox span {
    position: absolute;
    top: 6px;
    left: 0;
    height: 40px;
    width: 40px;
    background-color: transparent;
    border: 2px solid var(--brand-color);
}

.mat-checkbox:hover input~span {
    background-color: #eee;
}

.mat-checkbox input:checked~span {
    background-color: var(--brand-color);
}

.mat-checkbox span:after {
    content: "";
    position: absolute;
    display: none;
}

.mat-checkbox input:checked~span:after {
    display: block;
}

.mat-checkbox span:after {
    left: 13px;
    top: 4px;
    width: 12px;
    height: 23px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

@media (max-width: 575.98px) {
    button.btn[type="submit"] {
        padding: .75rem 2.5rem .75rem;
    }
}