.contactus-section .container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 350px;
    background-color: var(--color-blue);
    text-align: center;
    color: white;
}

.title{
    font-size: var(--title-font-size);
}

.subtitle h4{
    font-size: 25px;
    margin: 0;
}

/* form */
.form-section .container{
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

#form-map{
    width: 48%;
}

form{
    width: 48%;
    display: flex;
    flex-direction: column;
    row-gap: var(--spacing-lg);
}

.input-wrapper{
    display: flex;
    flex-direction: column;
}

label{
    font-size: var(--standard-p-font-size);
    color: var(--color-lightgrey);
    margin-bottom: 3px;
}

input, select{
    width: 100%;
    height: 40px;
    font-size: 15px;
    line-height: 1.8px;
    border: 1px solid var(--color-lightgrey);
    border-radius: 4px;
}

textarea{
    min-height: 150px;
    line-height: 1.5;
    resize: vertical;
}

button{
    font-size: var(--standard-p-font-size);
    padding: 14px 20px;
    border: 0;
    cursor: pointer;
    color:white;
    background-color: var(--color-blue);
    transition: background-color 0.2s;
}

button:hover{
    background-color: var(--color-red);
}

.alert{
    font-size: var(--standard-p-font-size);
    width: 100%;
    text-align: center;
    padding: var(--spacing-sm);
    box-sizing: border-box;
    border-radius: 10px;
    margin: 0;
}

.alert.success{
    background-color: #27AE60;
}

.alert.fail{
    background-color: #A93226;
}

@media only screen and (max-width:670px){

    .subtitle h4{
        font-size: 18px;
    }

    .form-section .container{
        flex-direction: column;
    }

    #form-map, form{
        width: 100%;
    }

    #form-map{
        aspect-ratio: 2 / 1.8 ;
        height: auto;
    }

    input, select{
        height: 30px;
    }

}
