.loginform {
  position: relative;
  border-radius: 5px;
  background-color: #f2f2f2;
  padding: 20px 0 30px 0;
  box-sizing: border-box;
  max-width: 900px;
  margin: auto;
  margin-top: 12%;
  box-sizing: border-box;
} 
.loginform input,
.btn {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 4px;
  margin: 5px 0;
  opacity: 0.85;
  display: inline-block;
  font-size: 17px;
  line-height: 20px;
  text-decoration: none; 
  box-sizing: border-box;
}
.error {
    padding: 5px 10% 5px 10%;
    background: #e09d55;
    width: auto;
    display: inline-block;
    border-radius: 5px;
    color: white;
}
.loginform .btn i {
    width: 30px;
    display: inline-block;
    text-align: center;
}
.loginform input:hover,.btn:hover {opacity: 1;}
.loginform .facebook {
  background-color: #3B5998;
  color: white;
  text-align: left;
  box-sizing: border-box;
}
.loginform .apple {
  background-color: #424242;
  color: white;
  text-align: left;
  box-sizing: border-box;
}
.loginform .google {
  background-color: #ab3838;
  color: white;
  text-align: left;
  box-sizing: border-box;
}
.loginform .microsoft {
  background-color: #55ACEE;
  color: white;
  text-align: left;
  box-sizing: border-box;
}
.loginform .email {
  background-color: #4CAF50;
  color: white;
  text-align: left;
  box-sizing: border-box;
}
.loginform input[type=submit] {
  background-color: #4CAF50;
  color: white;
  cursor: pointer;
}
.loginform input[type=submit]:hover {background-color: #45a049;}
.loginform .column {
  /* float: left; */
  width: 50%;
  margin: auto;
  padding: 0 5%;
  margin-top: 6px;
  box-sizing: border-box;
}
.loginform .row {
    margin:0;
}
/* Clear floats after the columns */
.loginform .row:after {
  content: "";
  display: table;
  clear: both;
}
/* vertical line */
.loginform .vl {
  position: absolute;
  left: 50%;
  transform: translate(-50%);
  border: 2px solid #ddd;
  height: 175px;
}
.loginform .vl-innertext {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    background-color: #f1f1f1;
    border: 1px solid #ccc;
    border-radius: 50%;
    padding: 0;
    line-height: 1;
    width: 35px;
    height: 35px;
    text-align: center;
    line-height: 35px;
    color: gray;
}
/* hide on medium and large screens */
.loginform .hide-md-lg {
  display: none;
}
.loginform .bottom-container {
  text-align: center;
  background-color: #666;
  border-radius: 0px 0px 4px 4px;
}

.popup {
    background: white;
    color: black;
    padding: 20px;
    width: auto;
    margin: auto;
    text-align: center;
    border-radius: 5px;
    min-width: 200px;
    font-size: 1.2em;
    margin: auto;
    width: auto;
    max-width: 600px;
}
.column2 {
    clear: both;
    width: 100%;
    margin: auto;
    padding: 0 40px;
    margin-top: 6px;
    box-sizing: border-box;
}
.loginstep2 {
  display: none;
}
.confirm-mail-text {
    background: #f7c27f;
    padding: 2%;
    display: block;
    text-align: center;
    box-sizing: border-box;
    padding: 10px;
}
input#code {
    border: 1px solid #eaa246;
    width: 300px;
    margin: auto;
    display: block;
    text-align: center;
}

select#country {
    width: 100%;
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin: 5px 0;
    opacity: 0.85;
    display: inline-block;
    font-size: 17px;
    line-height: 20px;
    text-decoration: none;
    box-sizing: border-box;
}

#username.wrong-input, #password2.wrong-input {
    border: 1px solid red;
    background: #ffd2d2;
    color: black;
}

#username.good-input, #password2.good-input {
    border: 1px solid #65b969;
    background: #dfffdf;
    color: black;
}

@media screen and (max-width: 650px) {
  .loginform .column {
    width: 100%;
    margin-top: 0;
  }
  .loginform .vl {
    display: none;
  }
  .loginform .hide-md-lg {
    display: block;
    text-align: center;
  }
}

/* darkmode */
.darkmode .loginform {
      background-color: #2d2e2f;
      border: 1px solid #1e1e1e;
      box-shadow: 1px 3px 4px #1c1c1c;
}

/* loading spinner */
.spinner{
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255,255,255,0.8) url("https://www.virtualdj.com/images/v9/frontpage/spinner.gif") center no-repeat;
}
.darkmode .spinner{
  background: rgba(0,0,0,0.8) url("https://www.virtualdj.com/images/v9/frontpage/spinner.gif") center no-repeat;
}
body.loading{
  overflow: hidden;   
}
body.loading .spinner{
  display: block;
}