body{
    overflow-x: hidden;
}

.form_box{
    width: 100vw;
    min-height: 700px;
    height: auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    border-radius: 10px;
    border-color: #787a7a;
    border: 25px;
    background-color: rgb(255, 255, 255);
} 

.form{
    width: 400px;
    min-height: 600px;
    height: auto;
    background-color: rgb(255, 255, 255);
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    justify-content: center;
    border-color: #787a7a;
    border: 5px;
    border-radius: 0px 15px 15px 0px ;
}

.form input{
    height: 40px;
    width: 255px;
    padding-left: 30px;
    border-radius: 10px;
    border: 5px;
    border-color: #787a7a;
    background-color:#ffffff;
}  
.form input:focus {
    outline: 5px;
    border: 5px;
    border-color: #787a7a;
}

#sub{
padding-left: 0;
width: 120px;
background-color: rgba(147, 148, 232, 0.726);
font-weight:900 ;
color: rgba(0, 0, 0, 0.687);
border: 2px;
font-family: 'MyFontBlack';
font-size: 20px;
text-transform:uppercase;

}                   
#sub:hover{  
background-color: rgba(147, 148, 232);
color: white;

}



.form h1 {
    font-size: 40px;
    font-family: 'MyFontBlack';
}
.form h2 {
    font-size: 30px;
    font-family: 'MyFontBlack';
}
.info{
    width: 500px;   
    min-height: 600px;
    height: auto;
    padding: 0 50px 0 50px;
    box-sizing: border-box;
    background-color: rgb(255, 255, 255);
    display: flex;
    border-color: #787a7a;
    align-items: center;
    border-radius: 15px 0px 0px 15px  ;
border-right: 5px solid rgb(132, 210, 255);
    
}
.map{
width: 1000px;
height: 300px;
background-color: blueviolet;
margin: 0 auto;

}
.map >h1{
    font-size: 100px;
    
}
.info pre{
white-space: pre-wrap;
word-wrap: break-word;
font-family: 'MyFontBlack';
font-weight: 600;
} 


.msg {
  width: 90%;
  min-height: 120px;
  padding: 10px;
  resize: none;        
  line-height: 1.6;
  font-size: 16px;
  width: 255px;
  padding-left: 30px;
  border-radius: 10px;
  border: 5px;
  border-color: #787a7a;
  background-color:#ffffff;
}

.wtf{
font-family: 'MyFontBlack';
border: 0px;
background-color:#25d366;
border-radius: 50px;
padding: 10px 20px;
font-weight: 600;
color: black;
}

select {
  appearance: none;
}
.service{
    height: 40px;
    width: 285px;
    padding-left: 30px;
    border-radius: 50px;
    border: 2px;
    background-color:#ffffff;
    outline: none;
    border-color: #787a7a;
}
.service option:checked {
  background-color: #0cf;
  color: #fff;
}

@media (max-width: 1005px) {
  .map {
    width: 100%;
  }
  iframe {
    width: 100%;
  }
}

@media (max-width:900px) {
    .form_box{
    flex-direction: column;
    gap: 20px;
    padding:20px 0px ;   
}
.info{
    border-radius: 15px;
}
.form{
    border-radius: 15px;

}

}
@media (max-width:500px) {

.info{
    width: 100%;
    padding: 0 10px ;
    margin: 0;

}
}
@media (max-width:400px){
   .form{
    width: 100%;
   } 
}