@import "https://fonts.googleapis.com/css?family=Montserrat|Ubuntu";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Ubuntu;
  text-decoration: none;
}
*:focus {
  outline: none;
}
.heading {
  text-align: center;
  margin-top: 20px;
  margin-bottom: 40px;
}
.wrapper {
  width: 90%;
  max-width: 900px;
  margin: auto;
}
.form {
  max-width: 600px;
  padding: 50px;
  background-color: #fff;
  margin: auto auto 50px;
  box-shadow: 0 0 3px #ccc;
}
.form .col2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: 10px;
}
.form .col3 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  grid-gap: 10px;
}
.form .col2.center {
  max-width: 250px;
  margin: auto;
  grid-gap: 0;
}
.form label {
  display: block;
  padding: 10px;
}
.form label span {
  font-size: 14px;
  font-weight: 400;
}
.form label .input {
  display: block;
  width: 100%;
  resize: none;
  border: none;
  border-bottom: 1px solid #d9d9d9;
  padding: 7px 0;
  font-weight: 700;
  line-height: normal;
}
.form label .input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0 30px #fff inset;
}
.form button {
  display: block;
  margin: 20px auto auto;
  width: calc(100% - 20px);
  padding: 12px;
  text-align: center;
  border: none;
  background-color: #9a084f;
  color: #fff;
  font-family: Montserrat;
  font-size: 12px;
  text-transform: uppercase;
  transition: 0.3s background-color, 0.3s color;
  font-weight: 700;
  letter-spacing: 1px;
}
.form button:hover,
.form button:focus,
.form button:active {
  background-color: #9a084f;
  color: #fff;
}
.form button.load {
  background: url(https://sangraha.net/s90/images/loading_white.gif) no-repeat
    center;
  background-color: #9a084f;
  color: #fff;
  background-size: 25px;
  height: 47px;
}
.error_container {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
  background-color: rgba(0, 0, 0, 0.8);
  color: #fff;
  z-index: 100;
}
.error_container p {
  text-align: center;
  padding: 0 20px;
  line-height: normal;
  margin: 0;
}
.error_container i {
  position: absolute;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  padding: 5px;
}
.success_container {
  display: none;
  text-align: center;
}
.success_container img {
  max-width: 110px;
  margin-bottom: 10px;
}
.jsb-comp-footer {
  position: relative;
  top: 20px;
}
