*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    font-family:"Outfit";
    background: linear-gradient(#ffdad5 , #fff7f9);
}
.contact_container{

    height: 100vh;
    display:flex ;
    align-items: center;
    justify-content: space-evenly;

}
.contact_left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact_left_title h2{
    display: flex;
    justify-content: center;
    font-weight:600;
    color: #a363aa;
    font-size: 40px;
    margin-bottom: 5px;

}
.contact_left_title hr{
    border: none;
    width: 320px;
    height: 5px;
    background-color: #a363aa;
    border-radius: 10px;
    margin-bottom: 20px;

}

.contact_inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;


}
.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{
    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;

}

@media (max-width:800px){
    .contact_inputs{
        width: 80vw;
    }
    .contact_right{
        display: none;
    }
}

.contact_right:hover{
    transform: scale(1.5);
}

h3{
    font-family: cursive;
}
.aud :hover{
transform: scaleX(1.1)
}
.btn :hover{
    transform: scale(2);
}