<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">
.contact-form {
  margin-top: 30px;
}
.contact-form .input-block {
  background-color: #fff;
  border: solid 1px #ccc;
  width: 100%;
  height: 45px;
  padding: 15px;
  position: relative;
  margin-bottom: 20px;
  -moz-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  border-radius: 10px;
}
.contact-form .input-block.focus {
  background-color: #fff;
  border: solid 1px #22315c;
}
.contact-form .input-block.textarea {
  height: auto;
}
.contact-form .input-block.textarea .form-control {
  height: auto;
  resize: none;
}
.contact-form .input-block label {
  position: absolute;
  left: 15px;
  top: 18px;
  display: block;
  margin: 0;
  font-weight: 300;
  z-index: 1;
  color:#555;
  font-size: 18px;
  line-height: 10px;
  font-weight: 500;
}
.contact-form .input-block .form-control {
  background-color: transparent;
  padding: 0;
  border: none;
  -moz-border-radius: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  height: auto;
  position: relative;
  z-index: 2;
  font-size: 18px;
  color: #555; 
}

.contact-form .input-block .form-control:focus label {
  top: 0;
}

.contact-form .square-button {
  background-color: #2E5187;
  color: #efefef;
  
  font-size: 16px;  
  font-weight: 500;

  padding: 8px 32px;
  letter-spacing: 1px;
  border-radius: 50px;
  
 
  border: 2px solid #EFEFEF;
  width: 30%;  
  margin-bottom: 60px;
  margin-top: 20px;
  margin-left: 35%;
  margin-right: 35%;
}
.contact-form .square-button:hover, .contact-form .square-button:focus {
  background-color: white;
  color: #22315c;
  border: 2px solid #22315c;
}

@media (min-width: 768px) {
  .contact-wrap {
    width: 60%;
    margin: auto;
  }

  
}

@media (max-width: 1257px) {
  .contact-form .square-button {

    height: 40px;  
  width: 50%;  
  margin-left: 25%;
  margin-right: 25%;
  }
}

@media (max-width: 437px) {
  .contact-form .square-button {

    height: 40px;  
  width: 60%;  
  margin-left: 20%;
  margin-right: 20%;
  }

  @media (max-width: 340px) {
    .contact-form .square-button {
      font-size: 12px;
    }
}
/*----page styles---*/


.contact-wrap {
  padding: 15px;
}



</pre></body></html>