.form *{
  outline: none;
}
.form__body::after{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.9) url("../img/VAyR.gif") center / 50px no-repeat;
  opacity: 0;
  visibility: hidden;
  transition: all  0.5s ease 0s;
}
.form__body._sending::after{
  opacity: 1;
  visibility: visible;
}

.form{
    position:relative;
    margin:50px 10px;   
    min-width:100px;
    width: 100%;
    min-height:200px;
    z-index:0;
    padding:90px;
    border:1px solid #383838;   
    background: #cc3f3f;
    background: repeating-linear-gradient(-45deg, #EFC1CB , #EFC1CB 30px, #F2F2F2 30px, #F2F2F2 40px, #C2E8F5 40px, #C2E8F5 70px,#F2F2F2 70px, #F2F2F2 80px);
    border-radius:8px;
    box-shadow:0px 1px 6px #3F3F3F;

}
.form:after{
    background:#F9F9F9;
    margin:10px;
    position: absolute;
    content : "";
    bottom: 0;
    left: 0;
    right: 0;
    top: 0;
    z-index: -1; 
    border:1px #E5E5E5 solid;       
    border-radius:8px;
}
.form__input{
    height: 50px;
    padding: 0px 20px;
    border-radius: 5px;
    width: 100%;
    
}

.form__input._error{
  box-shadow: 0 0 15px red;
}

textarea.form__input{
    min-height: 120px;
    resize: vertical;
}

._1u9t {
    font-size: 2em;
    padding: 12px 8px;
}
.form .btn{
    width: 100px;
    height: 50px;
    /* border-radius: 20px; */
}

.feedback .text{
  color: black;
  margin-bottom: 2em;
}

@media (max-width: 1000px) {
  .form .btn{
    width: fit-content;
    height: fit-content;
    /* border-radius: 20px; */
    font-size: xx-large;
    }
   
}
@media (max-width: 1300px) {
  .letter__form{
    padding: 0;
  }
}