.outermost-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fafafa;
  height: auto;
  margin-top: 80px;
  width: 100%;
}

.outermost-container h1{
  padding-top: 20px;
  padding-bottom: 20px;
}

.outer-div{
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 50%;
}

.form-div{
  display: flex;
  justify-content: center;
  width: 100%;
  height: 780px;
  background-color: white;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding-top: 50px;
  padding-bottom: 50px;
  border-radius: 10px;
  margin-bottom: 30px;
}

form{
  width: 65%;
}

input[type=text], select, textarea {
  width: 100%;
  padding: 12px 20px;
  margin: 8px 0;
  display: inline-block;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-sizing: border-box;
  margin-bottom: 30px;
  font-size: 16px;
  box-sizing: border-box;
}

#user-name{
  background-color: white;
  background-image: url('../contactUsImg/nameImg.webp');
  background-position: 17px 8px; 
  background-size: 25px 25px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 53px;
}

#user-email{
  background-color: white;
  background-image: url('../contactUsImg/emailImg.webp');
  background-position: 17px 8px; 
  background-size: 25px 25px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 53px;
}

#user-phone-num{
  background-color: white;
  background-image: url('../contactUsImg/phoneImg.webp');
  background-position: 17px 8px; 
  background-size: 25px 25px;
  background-repeat: no-repeat;
  padding: 12px 20px 12px 53px;
}

textarea{
  height: 150px;
  resize: none;
}

input[type=text]::placeholder, select::placeholder, textarea::placeholder {
  color: #A7B3C4;
}

.submit-styling{
  display: flex;
  justify-content: center;
  width: 100%;
}

input[type=submit] {
  width: 130px;
  background: linear-gradient(to right, #3C84FF, #D443FF);
  color: white;
  padding-top: 9px;
  padding-bottom: 9px;
  margin: 8px 0;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 1.1rem;
  font-weight: 600;
}

input[type=submit]:hover {
  background: linear-gradient(to right, #629cff, #df75ff);
}

.contact-info-div{
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 50px;
}

.contact-info-div h3{
  margin-top: 10px;
  margin-bottom: 0;
}

.contact-info-div p{
  margin-bottom: 20px;
  color: rgb(70, 70, 70);
}

.contact-info-div span{
  margin-bottom: 10px;
  color: rgb(70, 70, 70);
}

/*
form{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80%;
}


.input-fields-div{
  display: flex;
  flex-direction: column;
  align-items: left;
}

.input-fields-div .input-label{
  margin-right: auto;
  padding: 12px 12px 12px 0;
}

.input-fields-div input[type=text], select, textarea{
  padding: 0;
  padding: 12px;
  margin: 0;
  border: 1px solid #ccc;
  border-radius: 4px;
  width: 100%;
}
*/

@media(max-width: 1300px){
  .outer-div{
    width: 60%;
  }
}

@media(max-width: 1100px){
  .outer-div{
    width: 80%;
  }
}

@media(max-width: 600px){
  .outer-div{
    width: 90%;
  }
}

@media(max-width: 500px){
  .outer-div{
    width: 90%;
  }
  form{
  width: 85%;
  }
}

