/* Form */
.form-container {
  position: relative;
  z-index: 1;
  background: #FFFFFF;
  max-width: 300px;
  margin: 40px auto 100px;
  padding: 30px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  text-align: center;
}
.form-container .thumbnail {
  width: 250px;
  height: 150px;
  margin: 0 auto 30px;
  box-sizing: border-box;
}
.form-container .thumbnail img {
  display: block;
  width: 100%;
  border-radius: 10px;
}
.form-container input {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  font-family: "Anodina-Regular", sans-serif;
  margin: 0 0 15px;
  padding: 15px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  box-sizing: border-box;
  font-size: 14px;
}
.select {
  outline: 0;
  background: #f2f2f2;
  width: 100%;
  border: 0;
  margin: 0 0 15px;
  height: 50px;
  padding: 15px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  box-sizing: border-box;
  font-size: 14px;
}
.error{
  padding: 10px;
  margin: 0 0 15px;
  border-top-left-radius: 3px;
  border-top-right-radius: 3px;
  border-bottom-left-radius: 3px;
  border-bottom-right-radius: 3px;
  background-color: #FC5000;
  color: white;
  display: none;
  font-size: 14px;
}

.loading-hidden{
  visibility: hidden;
}

.lds-ring {
  display: inline-block;
  position: relative;
  width: 20px;
  height: 20px;
}
.lds-ring div {
  box-sizing: border-box;
  display: block;
  position: absolute;
  width: 30px;
  float: right;
  height: 30px;
  border: 4px solid #fff;
  border-radius: 50%;
  animation: lds-ring 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
  border-color: #fff transparent transparent transparent;
}
.lds-ring div:nth-child(1) {
  animation-delay: -0.45s;
}
.lds-ring div:nth-child(2) {
  animation-delay: -0.3s;
}
.lds-ring div:nth-child(3) {
  animation-delay: -0.15s;
}
@keyframes lds-ring {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

.form-container .button {
  outline: 0;
  background: #FC5000;
  width: 100%;
  border: 0;
  padding: 0px;
  margin-top: 15px;
  font-family: "Anodina-Regular", sans-serif;
  font-weight: bold;
  line-height: 50px;
  height: 50px;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  color: #FFFFFF;
  font-size: 16px;
  -webkit-transition-duration: 0.4s; /* Safari */
  transition-duration: 0.4s;
  text-decoration: none;
}
.form-container .message {
  margin: 15px 0 0;
  color: #b3b3b3;
  font-size: 13px;
}
.form-container .message a {
  color: #FC5000;
  text-decoration: none;
}

.container {
  position: relative;
  z-index: 1;
  max-width: 300px;
  margin: 0 auto;
}

.ripple {
  background-position: center;
  transition: background 0.8s;
}
.ripple:hover {
  background: #FC6500 radial-gradient(circle, transparent 1%, #FC6500 1%) center/15000%;
}
.ripple:active {
  background-color: #FC5000;
  background-size: 100%;
  transition: background 0s;
}

@font-face { font-family: Anodina-Regular; src: url("/fonts/Anodina-Regular.otf"); }

body {
  background: #ccc;
  font-family: "Anodina-Regular", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body:before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  background: rgba(255, 255, 255, 0.8);
  width: 100%;
  height: 100%;
}

.button{
  transition: transform .2s;
}
.button:hover {
  transform: scale(1.05); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
