.CantactForm{
    background-color: #e4f3ee;
    

}
form{
    display: flex;
    justify-content:space-between;
}
.formContainer>h1{
    font-size: 2rem;
}
form>div{
    width: 500px;
}
.FormInfo{
    padding: 2rem 4rem 5rem 4rem;
    width: 100%;
}
.YourInfo{
    display: flex;
    flex-direction: column;
}
.formContainer{
    padding: 2rem 8rem 8rem 4rem;
    width: 100%;
    
}
.YourInfo{
    display: flex;
    flex-direction: column;
}
.formContainer input[type='text'],input[type='tel'],input[type='email']{
    
    width: 100%;
    height: 50px;
    padding: 20px;
    
}
form input,textarea{
    padding: 5px 7px;
    
    font-size: 1rem;
    border: 1px solid black;
    outline: none;
    margin-top: 0.7rem;
    border-radius: 10px;
   

}

textarea{
    width: 100%;
  
}
#submit-btn{

    background-color: var(--secondary-color);
    color: var(--white-color);
    font-size: 1.2rem;
    font-weight: bold;
    width: 100%;
    height: 50px;
    text-transform: uppercase;
    cursor: pointer;
    transition: 0.1s;
    border: none;

   
}
#submit-btn:hover{
    background-color: var(--primary-color);
    transition: 0.2s;
}

input:focus {
    border:1.4px solid var(--secondary-color);
    box-shadow: var(--box-shadow-1);
  }
textarea:focus {
    border:1.4px solid var(--secondary-color);
    box-shadow: var(--box-shadow-1);
  }
  .phone p{
    padding-left: 15px;
  }
#customerInfoMssg{
    height: 1rem;
    color: red;
    padding-left: 5px;
}

/* media quries */
@media screen and (max-width:450px) {
    
    .formContainer {
        padding: 0;
        width: 95%;
        margin: 1rem auto;
        margin-bottom: 3rem;
    }
    form {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
    form>div {
        width: auto;
    }
    .formContainer>h1 {
        text-align: center;
        padding-bottom: 1rem;
    }
    #customerInfoMssg {
        height: auto;
        
    }
}