body {
  text-align: center;
}

.highlight > pre {
  line-height: 20px !important;
}

.title-container {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 1rem;
  margin-bottom: 2rem;
}

.title {
  font-size: 22px;
  text-align: center;
  padding: 2rem 0;
}

.required {
  font-size: 30px;
  position: relative;
  top: 5px;
  font-weight: bold;
}

.input-container {
  box-shadow: 2px 2px 2px 0px #e3e4ff;
}

.icon-container {
  width: 35px;
  text-align: center;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff471a), to(#ec3b0f));
  background: linear-gradient(#ff471a, #ec3b0f);
  margin-right: -1px;
  float: left;
  height: 100%;
}

.icon-email:before {
  content: '\f0e0';
}

.icon-user:before {
  content: '\f007';
}

.icon {
  font-size: 20px;
  color: white;
  vertical-align: sub;
}

.input {
  padding-left: 10px;
  padding-top: 3px;
  border: solid 1px #71a6ff;
}

.section-container {
  width: 100%;
  border-radius: 2px;
  margin-bottom: 20px;
  background: -webkit-gradient(linear, left top, left bottom, from(#ff471a), to(#ec3b0f));
  background: linear-gradient(to bottom, #ff471a 0%, #ec3b0f 100%);
}

.section-title {
  font-size: 25px;
  color: white;
  font-weight: bold;
}

/* COLORS */
.color-blue {
  color: #0d4cac;
}
.color-purple {
  color: #770d69;
}

/* LIGHT COLORS */
.color-light-blue {
  color: #00c3ff;
}
.color-light-purple {
  color: #c515a8;
}

/* BORDER COLORS */
.border-blue {
  border-color: #0d4cac;
}
.border-purple {
  border-color: #770d69;
}

/* ARROW STYLES */
.arrow-blue {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='blue' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    no-repeat right 0.75rem center/8px 10px;
}
.arrow-purple {
  background: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 4 5'%3e%3cpath fill='purple' d='M2 0L0 2h4zm0 5L0 3h4z'/%3e%3c/svg%3e")
    no-repeat right 0.75rem center/8px 10px;
}

.custom-select {
  padding: 5px;
  border-radius: 5px;
  overflow: auto;
}

ul.simple {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 0 auto;
}

[class^='hvr-'] {
  margin: 0.4em;
  padding: 1em;
  cursor: pointer;
  background: #e1e1e1;
  text-decoration: none;
  color: #666;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

ul.simple > li {
  list-style: none !important;
}

ul.simple > li a {
  -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.3s;
  transition-duration: 0.3s;
  display: -webkit-box;
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
  margin: 20px;
  background: linear-gradient(236deg, rgba(255, 71, 26, 1) 0%, rgba(205, 40, 0, 1) 100%);
  height: 150px;
  width: 370px;
  color: white;
  cursor: pointer;
  font-size: 40px;
  line-height: 40px;
}

@media screen and (max-width: 480px) {
  ul.simple > li a {
    width: 280px;
    font-size: 30px;
  }
}

ul.simple > li a:before {
  content: '';
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(236deg, rgba(169, 0, 255, 1) 0%, rgb(119, 0, 179) 100%);
  -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.3s;
  transition-duration: 0.3s;
  -webkit-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
ul.simple > li a:hover,
ul.simple > li a:focus,
ul.simple > li a:active {
  color: white;
}
ul.simple > li a:hover:before,
ul.simple > li a:focus:before,
ul.simple > li a:active:before {
  -webkit-transform: scaleX(1);
  transform: scaleX(1);
}

h1 {
  text-align: center;
}
