@import url("https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;500;600;700&display=swap");

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body{
    font-family: myFont;
    background: url(images/ctn-background.png)center/cover no-repeat;
}

.contact-container{
    padding: 6vw 6vw;
    height: 100vh;
    width: 100%;
    /* height: auto; */
    align-items: center;
    justify-content: center;
    text-align: center;
}



.contact-container .ctn{
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2vw;

}

.contact-container .div{
    /* border: 1px solid black; */
}

.contact-container .div h1{
    font-size: 5vw;
    font-weight: 500;
    line-height: 80px;
}

.contact-left{
    display: flex;
    flex-direction: column;
    /* align-items: start; */
    gap: 20px;
    border: 1px solid black;
    padding: 4vw;
    width: 60%;
    border-radius: 25px;
    background: #FFF7F1;

}



.contact-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    font-size: 1vw;
    color: #413f3f;
    border-radius: 50px;
    border: 1px solid #18122B;
}

.contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}

.contact-inputs:focus{
    border: 2px solid #ff994f;
}

.contact-inputs::placeholder{
    color: #a9a9a9;
}

.contact-left button{
    width: 200px;
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: 2px solid #000000;
    border-radius: 50px;
    background: black;
    cursor: pointer;
}




@media (max-width:800px){
    .contact-inputs{
        width: 80vw;
    }
    .contact-left{
        width: 100%;
        height: auto;
    }
    .contact-right{
        display: none;
    }
    .contact-container{
        padding: 20vw 2vw;
    }
    .contact-container .div h1{
        font-size: 7vw;
        font-weight: 500;
        line-height: 40px;
    }
}

@media (width < 800px){
    body{
        width: 100%;
    }
}