.contact-us-box{
    height: 90vh;
    display: flex;
    justify-content: center;
    align-items: center;
}
.contact-us-box .image img{
    width: 600px;
}
.content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: center;
    padding: 20px 50px;
    animation: slide-in-right 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.content input{
    width: 400px;
    border-radius:20px ;
    padding: 10px 20px;
    border: 1px solid gray;

}
.content textarea{
    width: 400px;
    border-radius:20px ;
    padding: 10px 20px;
    border: 1px solid gray; 
    height: 100px;
}
.content h1{
    font-family: "roboto", sans-serif;
    font-size: 40px;
}
.content button {
    background-color: #551a8b;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
  }
  
  .content button:hover {
    transform: scale(0.95);
    transition: all 0.3s;
  }


  @keyframes slide-in-right {
    0% {
      -webkit-transform: translateX(1000px);
      transform: translateX(1000px);
      opacity: 0;
    }
    100% {
      -webkit-transform: translateX(0);
      transform: translateX(0);
      opacity: 1;
    }
  }

  @media all and (max-width: 500px) {
    .contact-us-box{
        flex-direction: column;
        padding: 90px 10px;
        gap: 20px;
    }
    .contact-us-box .image img{
        width: 350px;
    }
    .content,.content input{
        width: 90%;
        text-align: center;
    }
    .content textarea{
        width: 90%;
    }
  }