.background-login{
  background-image: url(../img/background.svg);
  background-size: cover;
  display: flex;
  justify-content: center;
  width: 100%;
  height: inherit;
}

.login-container {
  background-color: #DEF2FB;  
  height: 100%;
  width: 100%;
}


.wrapper-login{
  margin-top: 100px;
  max-width: 600px;
  background: white;
  padding: 50px 100px;
  border-radius: 10px;
}


/*.wrapper-login .form-group{
  padding: 11.5px;
}*/


@media only screen and (max-width: 1500px){
  .wrapper-login{
    margin-top: 50px;
    width: 500px;
    padding: 50px 25px;
  }  
}

@media only screen and (max-width: 550px){
  .wrapper-login {
    margin-top: 0;
    max-width: 400px;
    padding: 40px 20px;
    border-radius: 0;
  }  
}

.row.box-outer{
  justify-content: center;
}

.wrapper-login .logo {
  margin-bottom: 50px;
}

#login-language{
  text-align: right;
}

#login-language .dropdown-menu.show{
  border: none;
  background: transparent;
  margin-left: 14px;
}

#login-language .dropdown-menu.show:hover{
  cursor: pointer;
}

button.btn-transparent, button.btn-transparent:hover, button.btn-transparent:active, button.btn-transparent:focus{
  border: none;
  outline: none;
  box-shadow: none;
}

.welcome{
  text-align: center;
}

.login-form, .signup-form, .step2 .welcome{
  padding: 0 20px;
}
.login-form input[type=email], .login-form input[type=password], .signup-form input[type=email]{
  padding: 20px 15px;
}

.login-loader{
  text-align: center;
  border-radius: 5px;
  border: 1px solid #20BF6B;
  padding-top: 10px;
  padding-bottom: 5px;
}

.btn-sign-in, .btn-sign-up{
  background-color: #20bf6b;
  color: white;
  width: 100%;
  padding: 10px 0;
}

.btn-sign-in:disabled, .btn-sign-up:disabled{
  background-color: #C9CED7;
}

.btn-o{
  width: 100%;
  border: 1px solid #20BF6B;
  color: #20BF6B;
  background: transparent;
}

.btn-o:hover{
  color: white;
  background: #20BF6B;
}

p.p-signup {
  margin-top: 20px;
  text-align: center;
}
p.p-forgot {
  text-align: center;
}

#email-error{
  font-size: 11px;
  color: #f44336;
}


.spiner-signup{
  text-align: center;
}



/** Register spinner **/
.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
}
.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}
.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}
.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}
.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}
.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}
.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}
.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}
.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}
.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}
.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}
.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}
.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}
.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}
@keyframes lds-default {
  0%, 20%, 80%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.5);
  }
}

.desc-forgot{
  padding-left: 15px;
  padding-right: 15px;
}

.img-forgot{
  text-align: center;
}

.forgot-image{
  height: 160px;
  margin-top: 25px;
  margin-bottom: 30px;
}

.loader-spiner {
  border: 16px solid #20BF6B; /* Light grey */
  border-top: 16px solid #f3f3f3; /* Blue */
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
  margin: auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}