@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100..900;1,100..900&display=swap');


body{
    font-family: "Roboto", serif;
    font-optical-sizing: auto;
}


input,textarea{
   font-family: "Roboto", serif;
}




.message--box {
  position: absolute;
  z-index: 0;
  top: 20px;
  left: 50px;
  opacity: 0;
  transform: translateY(20px);
}

.animation {
  animation: fadeInUp 1s forwards;
}

.message--main {
  position: relative;
  width: 400px;
  height: 100px;
  box-shadow: 0px 0px 20px 2px #0d6efd;
  padding: 25px;
  background-color: #ffffff;
}

.message--main p {
  margin: 10px auto;
}

.container {
  display: block;
  width: 45%;
  margin: 35px auto;
}

.form {
  padding: 20px;
  background-color: antiquewhite;
  background: rgba(255, 255, 255, 0.6);
  backdrop-filter: blur(5px);
  border-radius: 10px;
  box-shadow: 0px 0px 20px 2px #0d6efd;
}

.inputs {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 25px;
}

.enter input {
  margin-bottom: 30px;
  width: 263px;
}

.enter textarea {
  margin-bottom: 30px;
  width: 400px;
  max-width: 400px;
  min-width: 400px;
  height: 110px;
  min-height: 110px;
}
.regien {
  width: 80px !important;
}

.phone {
  width: 170px !important;
}

.form-label {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.mobile--label {
  display: none;
}

.btn {
  display: block;
  margin: auto;
  width: 150px;
  height: 40px;
  background-color: #0d6efd;
  color: #ffffff;
  border-radius: 7px;
  border: 1px solid #0a58ca;
}

.btn:hover {
  background-color: #3c8aff;
}

.btn:active {
  background-color: #0a58ca;
  border-color: #0a58ca;
  box-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
}

.btn:disabled {
  background-color: #e0e0e0;
  border-color: #e0e0e0;
  color: #444;
}

.blur {
  filter: blur(4px);
}

.recaptcha{
  display: block;
  /* background-color: #3c8aff; */
  margin: 10px;
  padding: 5px 27%;
}

@keyframes fadeInUp {
  to {
    z-index:10; 
    opacity: 1;
    transform: translateY(0);
  }
}

@media screen and (max-width: 1500px) {
  .container {
    width: 65%;
  }
}

@media screen and (max-width: 1045px) {
  .container {
    width: 75%;
  }
}

@media screen and (max-width: 910px) {
  .container {
    width: 95%;
  }
}

@media screen and (max-width: 730px) {
  .container {
    width: 100%;
  }

  .labels {
    display: none;
  }

  .mobile--label {
    display: block;
  }

  .enter input {
    width: 98%;
  }

  .enter textarea {
    width: 98%;
    max-width:  98%;
    min-width: 98%;
  }


  .message--main{
    width: 200px;
  }

  .hint{
    display: block;
  }
 
  .inputs{
    display: block;
  }

  .regien {
   width: 20% !important;
}

.phone {
  width: 76% !important;
}


.recaptcha{
  padding: 5px;
}

input{
 height: 30px
}

}
