.form {
    width: 100%;
    padding: 48px 0;
    border-top-right-radius: 48px;
    border-top-left-radius: 48px;

}

.form h1 {
    align-items: center;
    display: flex;
    gap: 16px;
    margin-top: 1vh !important;
}

.form form {
    padding-top: 16px;
}

.form p {
    color: white;
}

.form input[type="text"],
.form input[type="tel"], 
.form input[type="email"], 
.form textarea{
    background-color: #163A59;
    border: none;
    border-bottom: 1px solid #fff;
    font-size: var(--wp--preset--font-size--p-3);
    font-family: var(--wp--present--font-family--poppins);
    width: 80%;
    color: white;
}
.form textarea{
    height: 100px;
}
.form input[type="text"]:focus,
.form input[type="tel"]:focus, 
.form input[type="email"]:focus, 
.form textarea:focus{
    border: none; /* Remove all borders on focus */
    outline: none; /* Remove the default outline */
    border-bottom: 2px solid #fff;
}
.form input[type="submit"]{
    background-color: transparent;
    color: white;
    border: 1px solid #ffffff4F;
    padding: 6px 32px;
    font-size: 18px;
    font-family: var(--wp--present--font-family--poppins);
    cursor: pointer;
    margin-top: 24px;
    border-radius: 25px;
    width: 100%;
    transition: all 0.4s;
    margin-bottom: 5vh !important;
}
.form input[type="submit"]:hover{
    background-color: white;
    color: #163A59;
}

.form form .wpcf7-list-item {
    margin-left: 0;
}

.form form .wpcf7-acceptance a {
    color: white;
}

@media only screen and (min-width: 768px) {
    
    .form {
        .form__form,
        .form__title {
            max-width: 600px;
        }

        .form__form {
            .wpcf7-submit {
                max-width: 280px;
            }
        }
    }
}

@media only screen and (min-width: 1200px) {
    .form { 
        padding-top: 64px;
        width: 100%
    }
}

@media only screen and (min-width: 1800px) {

    
}