.contact-form-container{
    height: 85vh;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    background-color: white;
    width: 40vw;
    border-radius: 50px;
    padding-top: 10px;
}
.container-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap: 20px;
}
.contact-left-title h2{
    font-weight: 600;
    color: rgb(2, 172, 239);
    font-size: 40px;
    margin-bottom: 5px;
}
.contact-left-title hr{
    border: none;
    width: 240px;
    height: 5px;
    background-color: rgb(6, 174, 240);
    border-radius: 10px;

}
.contact-inputs{
    width: 400px;
    height: 50px;
    border-color: rgb(7, 171, 241);
    outline:auto;
    outline-color: rgb(11, 175, 240);
    padding-left: 25px;
    font-weight: 500;
    color: grey;
    border-radius: 50px;
}
.contact-inputs-message{
    width: 400px;
    height: 80px;
    border-color: rgb(7, 171, 241);
    outline:auto;
    outline-color: rgb(11, 175, 240);
    padding-left: 25px;
    font-weight: 500;
    color: grey;
    border-radius: 50px;
    padding-top: 25px;
}
.dup-contact-form{
    background-color:rgb(7, 171, 241) ;
    width: 41vw;
    height: 86vh;
    border-radius: 50px;
}
.button{
    width: 15vw;
    height: 7vh;
    border-radius: 50px;
    background-color: white;
    color: rgb(7, 171, 241);
    font-weight: 500;
    transition-duration: 0.4s;
    border-color: rgb(7, 171, 241);
    outline: auto;
    outline-color: rgb(7, 171, 241);
}
.button:hover{
    background-color: rgb(7, 171, 241);
    color: white;
}
@media (max-width:800px) {
    .contact-inputs{
        width: 60vw;
        align-items: center;
        
    }
    .contact-form-right{
        display: none;
    }
    .contact-inputs-message{
        width: 80vw;
    }
    .contact-form-container{
        padding-left: 30px;

        
    }
    .dup-contact-form{
        padding-left: 33px;
        
        
       
    }
    .contact-left-title h2{
        font-size: 40px;
        padding-left: 10px;
    }
    .container-left{
        padding-left: 35vw;
       
        
    }
    .button{
        width: 60vw;
    }
}