main{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    height: 100vh;
    margin-top: 80px;
}

.contact{
    width: 75%;
    color: var(--beige);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* Form CSS */

.form-container,
.contact-info{
    padding: 50px;
}

.form-container{
    width: 51%;
}

.form-container h1,
.contact-info h1{
    margin: 0;
    margin-bottom: 5px;
}

.form-container p{
    margin-bottom: 20px;
}

form{
    display: flex;
    flex-direction: column;
}

input,
textarea,
.form-btn{
    padding: 12px;
    border-radius: 3px;
    border: none;
    font-family: var(--main-font);
}

textarea{
    margin-bottom: 10px;
    height: 150px;
}

.names{
    display: flex;
    justify-content: space-between;
    width: 100%;
}

.name{
    display: flex;
    flex-direction: column;
    width: 48%;
}

.name:nth-child(1){
    margin-right: 15px;
}

.name label,
.other-information label{
    margin-bottom: 5px;
}

.other-information{
    display: flex;
    flex-direction: column;
}

.other-information label{
    margin-top: 15px;
}

.form-btn{
    margin-top: 10px;
    background-color: var(--beige);
    font-size: 1.1em;
    transition: 0.3s ease-in-out;
    cursor: pointer;
}

.form-btn:hover{
    scale: 102%;
}

.continue-btn{
    text-decoration: none;
    padding: 0.8rem 0.8rem;
    width: 200px;
    text-align: center;
    border-radius: 50px;
    font-size: 1.1em;
    font-weight: 700;
    transition: 0.3s ease-in-out;
}

.seperator{
    height: 20px;
    width: 100%;
    padding: 10px 0;
}

.recaptcha-container {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
  width: 100%;
}


.seperator-top{
    display: none;
}


@media (max-width: 1280px){
    .main{
        height: 100%;
    }

    .contact{
        flex-direction: column;
        width: 100%;
        align-items: center;
    }

    .form-container{
        width: 80%;
    }

    .contact-info{
        width: 80%;
        display: flex;
        flex-direction: column;
        text-align: center;
    }

    .phone,
    .email,
    .address{
        display: flex;
        align-items: center;
        flex-direction: column;
    }

    .phone p,
    .email p,
    .address p{
        margin-left: 0;
    }

    .icon{
        margin: 20px 0 10px 0;
    }

    .icon:nth-child(1)
    {
        margin-top: 0;
    }

    iframe{
        margin-top: 40px;
    }

    .vertical-division{
        display: none;
    }

    .horizontal-division{
        display: block;
    }
    
    .seperator-top{
        display: block;
        width: 100%;
        height: 75px;
    }
    
    .g-recaptcha {
        transform: scale(0.85);
        transform-origin: 0 0;
    }
}


@media (max-width: 498px){
    .form-container{
        width: 100%;
    }

    .contact-info{
        width: 100%;
        text-align: center;
    }
    
}