html {
  box-sizing: border-box;
}
*, *:before, *:after {
  box-sizing: inherit;
}

html, body {
  height: 100vh;
  width: 100vw;
  font-family: Arial, Helvetica, sans-serif;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
}

.logo {
  text-align: center;
  margin-bottom: 40px;
}

.loginContent {
  width: fit-content;
  margin-right: auto;
  margin-left: auto;
  border: 1px solid #E5E5E5;
  border-radius: 12px;
  padding: 40px;
  margin-top: 150px;
  margin-bottom: 30px;
}

.loginInfo {
  max-width: 300px;
}

.loginInputs {
  display: flex;
  flex-direction: column;
  list-style: none;
  padding: 0;
}

.loginInputs li {
  position: relative;
}

.loginContent input[type=text],
.loginContent input[type=password] {
  font-size: 16px;
  width: 100%;
  border-radius: 10px;
  border: none;
  padding: 15px;
  margin-bottom: 10px;
  background-color: #ededed;
}

.showPassword {
  width: 20px;
  height: 30px;
  background-repeat: no-repeat;
  background-position: bottom;
  cursor: pointer;
  position: absolute;
  margin-left: 5px;
  right:10px;
}

input[type="password"] + .showPassword {
  background-image:url(./quick-menu/assets/password-vis.png);
}

input[type="text"] + .showPassword {
  background-image:url(./quick-menu/assets/password-hid.png);
}

.explain {
  font-size: 13px;
  color: #434343;
}

.footer {
  display:flex;
  justify-content: space-between;
  padding: 50px;
  margin-top: auto;
  background-color: black;
  color: white;
}

.footer a {
  color: white;
  text-decoration: none;
  cursor: pointer;
  margin-bottom: 15px;
}

.footerHelp, .appText {
  display: flex;
  flex-direction: column;
}

.footerAppQr {
  display:flex;
}

.mainButton {
  cursor: pointer;
  width: 100%;
  font-size: 16px;
  color: black;
  border-radius:12px;
  padding-top:15px;
  padding-bottom:15px;
  margin-top: 40px;
  border:none;
  background: #ffd400;
  vertical-align:top;
}

.mainButton:disabled {
  opacity: .5;
  color: #676868;
  background-color: #ffd400;
  box-shadow: none;
  cursor: default;
}

/* for mobiles */
@media screen and (max-width: 600px) {
  .loginContent {
    height: 100%;
    border: none;
    padding: 20px;
    margin-top: 80px;
}

  .footer {
    display: flex;
    flex-direction: column;
    margin-top: auto;
    padding-right: 50px;
    padding-left: 20px;
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .footer a {
    margin-bottom: 10px;
  }

  .footerSite {
    margin-bottom: 10px;
  }

}