@font-face {
  font-family: "Muli-Regular";
  src: url("../fonts/muli/Muli-Regular.ttf");
}
@font-face {
  font-family: "Muli-SemiBold";
  src: url("../fonts/muli/Muli-SemiBold.ttf");
}
@font-face {
  font-family: "Muli-Bold";
  src: url("../fonts/muli/Muli-Bold.ttf");
}
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

body {
  font-family: "Muli-Regular";
  color: #666;
  font-size: 13px;
  margin: 0;

  /* Old Browsers */
  background: #4f034e no-repeat center center fixed;

  /* FF3.6+ */
  background: -moz-linear-gradient(
      -45deg,
      #4f034e 0%,
      #c8085b 68%,
      #c8085b 100%
    )
    no-repeat center center fixed;

  /* Chrome, Safari4+ */
  background: -webkit-gradient(
      left top,
      right bottom,
      color-stop(0%, #4f034e),
      color-stop(68%, #c8085b),
      color-stop(100%, #c8085b)
    )
    no-repeat center center fixed;

  /* Chrome10+, Safari5.1+ */
  background: -webkit-linear-gradient(
      -45deg,
      #4f034e 0%,
      #c8085b 68%,
      #c8085b 100%
    )
    no-repeat center center fixed;

  /* Opera 11.10+ */
  background: -o-linear-gradient(
      -45deg,
      #4f034e 0%,
      #c8085b 68%,
      #c8085b 100%
    )
    no-repeat center center fixed;

  /* IE 10+ */
  background: -ms-linear-gradient(
      -45deg,
      #4f034e 0%,
      #c8085b 68%,
      #c8085b 100%
    )
    no-repeat center center fixed;

  /* W3C */
  background: linear-gradient(
      135deg,
      #4f034e 0%,
      #c8085b 68%,
      #c8085b 100%
    )
    no-repeat center center fixed;

  /* IE6–9 fallback */
  filter: progid:DXImageTransform.Microsoft.gradient(
    startColorstr='#4f034e',
    endColorstr='#c8085b',
    GradientType=1
  );

  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}


input,
textarea,
select,
button {
  font-family: "Muli-Regular";
  color: #333;
  font-size: 13px;
}

p,
h1,
h2,
h3,
h4,
h5,
h6,
ul {
  margin: 0;
}

img {
  max-width: 100%;
}

ul {
  padding-left: 0;
  margin-bottom: 0;
}

a:hover {
  text-decoration: none;
}

:focus {
  outline: none;
}

.wrapper {
  min-height: 100vh;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.inner {
  min-width: 850px;
  margin: auto;
  position: relative;
  padding-top: 30px;
  padding-bottom: 18px;
  background: url("../images/registration-form-2.jpg");

  background-position: center;
}
.inner2 {
  min-width: 850px;
  margin: auto;
  position: relative;
  padding-top: 30px;
  padding-bottom: 18px;
  background: url("../images/registration-form-4.jpg");
  background-repeat: no-repeat;
  background-position: center;
}
.inner h3 {
  text-transform: uppercase;
  font-size: 22px;
  font-family: "Muli-Bold";
  text-align: center;
  margin-bottom: 22px;
  color: #333;
  letter-spacing: 2px;
}

.inner p {
  margin-top: 30px;
  margin-bottom: 0px;
  text-align: center;
  width: 100%;
}
.inner2 h3 {
  font-size: 22px;
  font-family: "Muli-Bold";
  text-align: center;
  margin-bottom: 22px;
  color: #333;
}

.inner2 p {
  margin-top: 30px;
  margin-bottom: 0px;
  text-align: center;
  width: 100%;
}

form {
  width: 50%;
  padding-left: 45px;
}

.form-group {
  display: flex;
}
.form-group .form-wrapper {
  width: 50%;
}
.form-group .form-wrapper:first-child {
  margin-right: 20px;
}

.form-wrapper {
  margin-bottom: 11px;
}
.form-wrapper label {
  margin-bottom: 9px;
  display: block;
}

.form-control {
  border: 1px solid #ccc;
  display: block;
  width: 100%;
  height: 40px;
  padding: 0 20px;
  border-radius: 20px;
  font-family: "Muli-Bold";
  background: none;
}
.form-control:focus {
  border: 1px solid #ae3c33;
}

select {
  -moz-appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  padding-left: 20px;
}
select option[value=""][disabled] {
  display: none;
}

button {
  border: none;
  width: 152px;
  height: 40px;
  margin: auto;
  margin-top: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  background: #ae3c33;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-family: "Muli-SemiBold";
  border-radius: 20px;
  overflow: hidden;
  -webkit-transform: perspective(1px) translateZ(0);
  transform: perspective(1px) translateZ(0);
  box-shadow: 0 0 1px rgba(0, 0, 0, 0);
  position: relative;
  -webkit-transition-property: color;
  transition-property: color;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
}
button:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #a649e9;
  -webkit-transform: scaleX(0);
  transform: scaleX(0);
  -webkit-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transition-property: transform;
  transition-property: transform;
  -webkit-transition-duration: 0.5s;
  transition-duration: 0.5s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
button:hover:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
  transition-timing-function: cubic-bezier(0.52, 1.64, 0.37, 0.66);
}

.checkbox {
  position: relative;
}
.checkbox label {
  padding-left: 22px;
  cursor: pointer;
}
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

.checkmark {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  height: 12px;
  width: 13px;
  border-radius: 2px;
  background-color: #ebebeb;
  border: 1px solid #ccc;
  font-family: Material-Design-Iconic-Font;
  color: #000;
  font-size: 10px;
  font-weight: bolder;
}
.checkmark:after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: none;
  content: "\f26b";
}

@media (max-width: 991px) {
  .inner {
    min-width: 768px;
  }
}
@media (max-width: 767px) {
  .inner {
    min-width: auto;
    background: none;
    padding-top: 0;
    padding-bottom: 0;
    color: white;
  }

  .inner h3 {
    color: white;
  }
  form {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
  }
}

.alert {
  padding: 8px 35px 8px 14px;
  margin-bottom: 18px;
  color: #c09853;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
  background-color: #fcf8e3;
  border: 1px solid #fbeed5;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
.alert-heading {
  color: inherit;
}
.alert .close {
  position: relative;
  top: -2px;
  right: -21px;
  line-height: 18px;
}
.alert-success {
  color: #468847;
  background-color: #dff0d8;
  border-color: #d6e9c6;
}
