
  @import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: 'Poppins', sans-serif;
    background: linear-gradient(#ffdad5 , #fff7f9);
    
    
}
.contact-container{
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
}
.left-section{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.text-heading h1{
    font-weight: 600;
    color: #a363aa;
    font-size: 40px;
    margin-bottom: 5px;

}
.text-heading hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #a363aa;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contact-input{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;

}
.left-section textarea {
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
}
.contact-input:focus{
    border: 2px solid #ff994f;
}
.contact-input::placeholder{
    color: #a9a9a9;
}
.left-section button {
    display: flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(270deg, #ff994f, #fa6d86);
    cursor: pointer;

}
.left-section button img {
    height: 15px;
}
.right-section img{
    width: 500px;
}

@media (max-width:800px) {
    .contact-input{
        width: 80vw;
    }
    .right-section{
        display: none;
    }
}