*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    font-family: "outfit";
background: linear-gradient(#ffdad5, #fff7f9);
}
.contect-container{
    height: 100vh;
    align-items: center;
    display: flex;
    justify-content: space-evenly;
}
.contect-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contect-left-title{
    font-weight: 600;
    color: #a363aa;
    font-size: 40px;
    margin-bottom: 5px;
}
.contect-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    background-color: #a363aa;
    border-radius: 10px;
    margin-bottom: 20px;
}
.contect-inputs{
    width: 400px;
    height: 50px;
    border: none;
    outline: none;
    padding-left: 25px;
    font-weight: 500;
    color: #666;
    border-radius: 50px;

}
.contect-left textarea{
    height: 140px;
    width: 200px;
    padding-top: 15px;
    border-radius: 20px;
    border: none;
    outline: none;
    font-weight: 500;
    padding-left: 25px;
}
.contect-inputs:focus{
    border: 2px solid #ff994f;
}
.contect-inputs::placeholder{
    color: #a9a9a9;

}
.contect-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;
}
.contect-left button img{
    height: 15px;
}
.contect-right img{
    width: 450px;
    height: 400px;
    
}
@media (max-width:800px) {
    .contect-inputs{
        width: 80vw;
    }
    .contect-right{
        display: none;
    }
}























