@import url("https://fonts.googleapis.com/css?family=Muli&display=swap");
@import url("https://fonts.googleapis.com/css?family=Open+Sans:400,500&display=swap");

* {
  box-sizing: border-box;
}

body {
  background-color: #ececec;
  font-family: "Open Sans", sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  margin: 0;
}

.container {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  width: 500px;
  max-width: 100%;
}

.header {
  border-bottom: 1px solid #f0f0f0;
  background-color: #63a4f3;
  padding: 20px 20px;
  color: white;
}

.header h2 {
  margin: 0;
}

.form {
  padding: 20px 40px;
}

.form-control {
  margin-bottom: 0px;
  padding-bottom: 10px;
  position: relative;
}

.form-control label {
  display: inline-block;
  margin-bottom: 3px;
}

.form-control input {
  border: 2px solid #f0f0f0;
  border-radius: 4px;
  display: block;
  font-family: inherit;
  font-size: 14px;
  padding: 5px;
  width: 100%;
}

.form-control input:focus {
  outline: 0;
  border-color: #777;
}

.form-control.success input {
  border-color: #2ecc71;
}

.form-control.error input {
  border-color: #e74c3c;
}

.combobox {
  width: 100%;
  font-size: 12px !important;
}

.form-control i {
  visibility: hidden;
  position: absolute;
  top: 40px;
  right: 10px;
}

.form-control.success i.fa-check-circle {
  color: #2ecc71;
  visibility: visible;
}

.form-control.error i.fa-exclamation-circle {
  color: #e74c3c;
  visibility: visible;
}

.form-control small {
  color: #e74c3c;
  position: absolute;
  bottom: 0;
  left: 0;
  visibility: hidden;
}

.form-control.error small {
  visibility: visible;
}

.form .btn {
  background-color: #5867ea;
  border: 2px solid #cfd4d2;
  border-radius: 4px;
  color: rgb(255, 255, 255);
  display: block;
  font-family: inherit;
  font-size: 18px;
  padding: 10px;
  margin-top: 1px;
  width: 50%;
  text-align: center;
  text-decoration: none;
}
.form .btn:hover {
  background-color: rgb(255, 145, 111);
}

.button {
  position: relative;
  color: #e74c3c;
  font-family: 10px;
  display: flex;
  /* cursor: pointer; */
}

.column1 {
  float: left;
  width: 30%;
}

.column2 {
  float: right;
  width: 50%;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}

#captcha {
  height: 60px;
  border-radius: 5px;
}

@media screen and (max-width: 480px) {
  .social-panel-container.visible {
    transform: translateX(0px);
  }

  .floating-btn {
    right: 10px;
  }
}
