body {
  background-image: url("bg_mandarine.png");
  background-repeat: no-repeat ;
  background-size: 100vw 95vw;
}

.container {
  width: 100%;
  height: 100%;
}

.form-container {
  display: block;
  padding-top: 10%;
  margin: auto;
  width: 25%;
  perspective: 1000;
}
h3{
   text-align: center;
}

input:invalid {
  background-color: #ffeeee;
}
input:valid {
  background-color: #eeffee;
}

span{
  line-height: 20px;
}

.login-form {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 10px;
  height: 65%;
}

.title {
  background: rgba(255, 255, 255, 0.3);
  color: #000;
  font-family: 'Nunito', sans-serif;
  font-weight: normal;
  font-size: 22px;
  padding: 10px 10px 10px 20px;
  margin-top: 0;
  margin-bottom: 15px;
}

.form-input {
  padding: 5px;
  height: 20px;
  margin : auto;
  border-radius: 4px;
  border: none;
  font-family: 'Nunito', sans-serif;
  font-weight: normal;
}

textarea:focus, input:focus, button:focus {
    outline: 0;
}

.tooltip {
  background: rgba(6, 41, 61, 0);
  font-size: 0.8em;
  color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: normal;
  border-radius: 5px;
}
span {
  font-family: 'Nunito', sans-serif;
  font-style: italic;
}
.form-group {
  padding-top: 10px;
  padding-bottom: 10px;
  padding-left: 10px;
  display: flex;
}

.form-group-button{
   display: flex;
   justify-content: center;
 }

.form-group-image{
   display: flex;
   justify-content: center;
   margin-top: 15px;
 }

.login-button {
  position: absolute;
  width: 100px;
  height: 30px;
  border: none;
  border-radius: 4px;
  background-size: 500% 100%;
  background: rgba(255,255,255,0.7);
  box-shadow: inset 0 0 0 0 rgba(247, 148, 40, 0.7);
	-webkit-transition: all ease 0.3s;
	-moz-transition: all ease 0.3s;
	transition: all ease 0.3s;
  color: #000;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 0.8em;
  bottom: 10px;
}

.login-button:hover {
  box-shadow: inset 0 40px 0 0 rgba(247, 148, 40, 0.85);
}

.remember-p {
  display: inline;
  position: relative;
  margin-left: 5px;
    color: #fff;
  font-family: 'Nunito', sans-serif;
  font-weight: 500;
  font-size: 0.8em;
}

.loading {
    background: rgba(0, 90, 120, 0.7);
  border: 4px solid rgba(0, 90, 120, 0.9);
  border-radius: 8px;
  -webkit-transform: rotateY(-180deg);
          transform: rotateY(-180deg);
}

.login-form,
.loading {
  position: absolute;
  width: 400px;
  height: auto;
  min-height: 450px;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  -webkit-transition: -webkit-transform 2s;
          transition: transform 2s;
}

.loading-spinner-large {
  margin-left: 130px;
  margin-top: 55px;
  font-size: 10px;
  position: fixed;
  text-align: center;
  display: none;
  border-top: 10px solid rgba(255, 255, 255, 0.6);
  border-right: 10px solid rgba(255, 255, 255, 0.6);
  border-bottom: 10px solid rgba(255, 255, 255, 0.6);
  border-left: 10px solid rgba(247, 148, 40, 1);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: spin-clockwise 1.1s infinite linear;
  animation: spin-clockwise 1.1s infinite linear;
}
.loading-spinner-small {
  margin-left: 160px;
  margin-top: 85px;
  font-size: 10px;
  position: fixed;
  text-align: center;
  display: none;
  border-top: 10px solid rgba(255, 255, 255, 0.6);
  border-right: 10px solid rgba(255, 255, 255, 0.6);
  border-bottom: 10px solid rgba(255, 255, 255, 0.6);
  border-left: 10px solid rgba(247, 148, 40, 1);
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation: spin-counter-clockwise 1.1s infinite linear;
  animation: spin-counter-clockwise 1.1s infinite linear;
}

.loading-spinner-large,
.loading-spinner-large:after {
  border-radius: 50%;
  width: 120px;
  height: 120px;
}

.loading-spinner-small,
.loading-spinner-small:after {
  border-radius: 50%;
  width: 60px;
  height: 60px;
}
@-webkit-keyframes spin-clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes spin-clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin-counter-clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes spin-counter-clockwise {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}