@font-face {
    font-family: 'Manrope';
    src: url('fonts/webfont/manrope/Manrope-VariableFont_wght..woff2') format('woff2'),
         url('fonts/webfont/manrope/Manrope-VariableFont_wght..woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

body {
    background-color: #fff;
    margin: 0;
    padding: 20px;
    background-image: url('images/background-large@2x.jpg');
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-position: center;
    /* background-size: cover; */
    /* background-size: 100% 100%; */
    background-size: cover;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
    font-size: clamp(0.875rem, 0.2vw + 0.825rem, 1rem);
    color: #2A2A2A;
    
    
}

h1, h2, h3, h4, h5 {
    font-family: "Manrope", sans-serif;
   /* font-optical-sizing: auto; */
    font-style: normal;
    font-weight: 450;
    line-height: 120%;
}

h1, h2 {
    color: #2A2A2A;
    text-align: center;
    letter-spacing: 1.2px;
    font-size: clamp(1.625rem, 0.2vw + 1.575rem, 1.75rem);
}

h3 {
    margin: 0;
}

h5 {
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin: 4px;
    padding: 0;
}

p {
    font-weight: 400;
    letter-spacing: 0.5px;
    font-size: clamp(0.875rem, 0.2vw + 0.825rem, 1rem);
    margin-bottom: 24px;
}

a {
    color: #2A2A2A;
    text-decoration: none;
    margin: 0 10px;
    
}

a:hover {
    color: #2A2A2A;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.container {
    position: fixed;
    bottom: 0;
    left: 50%;
    /* Move to the middle of the page */
    transform: translateX(-50%);
    /* Shift the container back by 50% of its width to center it */
    padding: 10px 20px;
    text-align: center;
    margin-bottom: 30px;
    width: 90%;
    max-width: 800px;
}

.button {
    display: inline-block;
    background-color: #9CB6F8;
    color: #2A2A2A;
    border: 1px #9CB6F8;
    font-family: "Manrope", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 0.5px;
    font-size: clamp(0.875rem, 0.2vw + 0.825rem, 1rem);
    text-align: center;
    border-radius: 8px;
    text-shadow: none;
    padding: 16px 24px;
    margin-top: 16px;    
}

.button:hover {
    background-color: #fff;
    color: #2A2A2A;
    text-decoration: none;
}

.button:active {
    background-color: #fff;
    color: #2A2A2A;
    text-decoration: none;
}

.form {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Verteilt die drei Spalten gleichmäßig */
    gap: 10px; /* Abstand zwischen den Spalten */
    width: 100%; /* Nimmt die gesamte Breite ein */
    max-width: 800px; /* Optional: Begrenze die maximale Breite */
    margin: 0 auto; /* Zentriert die gesamte Zeile */
}

.form-left,
.form-center,
.form-right {
    flex: 1; /* Jede Spalte nimmt gleich viel Platz ein */
    display: flex;
    align-items: center;
    justify-content: center; /* Zentriert den Inhalt innerhalb der Spalte */
}

.button-image {
    height: 180px; /* Reduziere die Höhe weiter */
    max-width: 180px; /* Begrenze die maximale Breite */
    object-fit: contain; /* Verhindert Verzerrung des Bildes */
}

.footer {
    display: inline-block;
    vertical-align: middle;
    margin-top: 50px;
    font-size: 13px;
}