
.container {
    display: flex;
    justify-content: space-around;
    padding: 80px 20px 20px;
    margin: auto;
    background-image: url('background.webp');
    background-position: left; 
    background-size: cover;
}

.content {
    width: 50%;
}

section {
    margin-block: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    padding-inline: 10px;
    padding-block: 4px;
    box-shadow: 0px 0px 5px 5px rgba(255, 255, 255, 0.8);
    h2 {
        margin-block: 5px;
    }
}
#cta {
    margin-top: 50px;
    height: 500px;
    display: flex;
    flex-direction: column;
    position: relative;
    #ctab {
        background: linear-gradient( rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5) ), url('background_2.webp');
        background-size: cover;
        background-position: center;
        -webkit-filter: blur(2px);
        -moz-filter: blur(2px);
        -o-filter: blur(2px);
        -ms-filter: blur(2px);
        filter: blur(2px);
        width: 100%;
        height: 100%;
        position: absolute;
        box-shadow: inset 0px 0px 5px 5px #ffffff;
    }
    #ctat {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        position: absolute;
    }
    h1, h2 {
        color: #FFF;
        margin: 0px;
        text-shadow: 0px 0px 15px #000000, 0px 0px 40px #FFF;
        text-align: center;
    }
    h1 {
        font-size: 100px;
    }
    h2 {
        font-size: 50px;
    }
}
.form-container {
    width: 25%;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    margin-left: 5%;
    box-shadow: 0px 0px 10px 10px #dee3e3;
    height: fit-content;
    align-self: center;
}

.form-container h2 {
    text-align: center;
}
form {
    display: flex;
    flex-direction: column;
}

label {
    margin-top: 10px;
    font-weight: bold;
}

input, textarea {
    padding: 8px;
    margin-top: 5px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

button {
    margin-top: 15px;
    padding: 10px;
    background: #004040;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

small {
    display: block;
    margin-top: 10px; 
    font-size: 12px;
    color: #666;
    text-align: center;
}

@media only screen and (max-width: 900px) {
    .container {
        display: flex;
        flex-direction: column;
        align-items: center;
        background-position: center;
    }
    .content, .form-container {
        width: fit-content;
        margin: 0px;
    }

    h2 {
        text-align: center;
    }
    #cta {
        height: 250px;
        h1 {
            font-size: 35px;
        }
        h2 {
            font-size: 20px;
        }
    }
}