.header{
  height: 100px;
  border-bottom: 1px solid #ddd;
  background-color: #3b5998;
}

.header .logo{
  max-width:225px;
}

.information{
  padding:30px 15px;
  background-color:#ef7100;
  color:#fff;
}


.information p{
  margin:0;
  padding:0;
  font-size:16px;
  font-family: arial;
  letter-spacing: 0.3px;
}


.information p:first-child{
  margin-bottom:15px;
}

.input-wrapper{
  position: relative;
}

.error-message{
    position: absolute;
    top: 100%;
    width: auto;
    padding: 5px 15px;
    background-color: #fff;
    border: 1px solid #ddd;
    z-index: -10;
    box-shadow: 0px 3px 15px -2px #a9a9a9;
    opacity:0;
    visibility: hidden;
    transition: all .7s cubic-bezier(1, 0.01, 0, 0.9);
}

.error-message.active{
  opacity: 1;
  z-index:10000;
  visibility: visible;
}
.input-wrapper label {
  display: block;
  margin: 0;
  font-size: 16px;
  color: #545454;
  font-weight: 600;
}

.input-wrapper input{
  display: block;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  width: 100%;
  outline: none;
  padding: 10px 7px;
  font-size: 14px;
}

form{
  max-width: 380px;
}

.content-wrapper .col-md-6{
  padding-top:50px;
}

.content-wrapper h1{
  margin-bottom:20px;
  font-weight:bold; 
}

.submit-btn{
  margin-top:15px;
  padding:10px;
  background-color: #2193e7;
  color:#fff;
  font-size:15px;
  font-weight:bold;
  border-radius:5px;
  cursor:pointer;
  outline:none;
  width: 377px;
}

.white-btn{
  background-color:#fff;
  color:#000;
}

.bold-information{
  font-weight:bold;
  color:#000;
  margin-bottom:10px;
}

.sideImg {

  width: 100%;
}

@media (max-width:768px) {

  .information {

    margin: 0 -15px !important;
  }

  form{

    margin-bottom:30px;
  }
}