*{
    padding: 0;
    margin:0;
    box-sizing: border-box;
}
body{
    font-family: "Manrope", serif; 
    
}

.contact_main{
    width: 100%;
    height: calc(100vh - 70px);
    margin-top: 70px;
    background-image:   url(../assests/shapes/contactbg_shapes.png);
    background-size: cover;/*if 100vh doesn't work, return to 'cover'*/
    background-repeat: no-repeat;
    background-position: center;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2;
}
.contact-container{
    height: 100px;
    padding-bottom: 200px;
    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{
font-weight: 600;
color: #021120;font-size:40px ;
margin-top:200px;
margin-bottom: 5px;
}
.contact-left-title hr{
    border: none;
    width: 280px;
    height: 5px;
    background-color:#db6672;
    border-radius:10px;
    margin-bottom:20px;
}
.contact-inputs{
    width:400px;
    height: 50px;
    border:none;
    outline:none;
    padding-left:25px;
    font-weight: 500;
    color:#526760;
    border-radius: 50px;
    
}

.contact-inputs:hover{
border:1.5px solid #db6672;

}

.contact-left textarea{
    height:140px;
    padding-top:15px;
    border-radius:20px;
}
.contact-inputs::placeholder{
    color: #526760;
}
.contact-left button{
    display:flex;
    align-items: center;
    padding: 15px 30px;
    font-size: 16px;
    color: #fffaeb;
    gap:10px;
    border:none;
    border-radius:50px;
    background: #db6672;
    cursor:pointer;
}
@media(max-width 800px){ /* for phone screen. yo don't currently have a right side image so you ignored that part of the vid you watched. go back if need be */
.contact-inputs{
    width: 80vw;
}
}
