.contact-container{
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .contact-left{
    display: flex;
    flex-direction: column;
    align-items: start;
    gap:20px;
  }
  .contact-left-title{
    position: relative;
    font-weight: 100;
    color: #4070f4;
    font-size:20px;
    margin-top: 5px;
    font-weight: 900;
    /* text-align: center; */
    left: 100px;
  
  
  
    
    
  }
  .contact-container::after{
    content: "";
    height: 10px;
    background: #4070f4;
    position: absolute;
  }
  .contact-left-title hr{
    border: none;
    width: 120px;
    height: 5px;
    border-radius: 10px;
  
  }
  
  .contact-inputs{
    width: 400px;
    height: 50px;
    /* border: none; */
    /* outline: none; */
    padding-left: 25px;
    font-weight: 500;
    /* color: #0e2431; */
    border-radius: 50px;
  }
  .contact-left textarea{
    height: 140px;
    padding-top: 15px;
    border-radius: 20px;
  }
  .contact-inputs:focus{
    border: 2px solid #ff994f;
  }
  .contact-container::placeholder{
    color: #a9a9a9;
  }
  .contact-left button{
    display: flex;
    align-items: center;
    padding: 25px 30px;
    font-size: 16px;
    color: #fff;
    gap: 10px;
    border: none;
    border-radius: 50px;
    background: #4070f4;
    cursor: pointer;
  }
  
