html, body {
 height: 100%;
 overscroll-behavior-y: none; /* remove iphone overscroll */
}
body {
    background-color: #8ecea6;
    background-image: linear-gradient(-36deg, #3D8377 15%, #8ECEA6 85%);
    color: #396D58;
    padding: 0px;
    margin: 0px;

    font-family: 'Roboto', sans-serif;
    font-size: 14pt;
}

.lynx {
  display:none;
}

#element {
    max-width: 460px;
    min-width: 200px;
    padding: 20px;
}

#center {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100%;
}

input[type=text], input[type=password] {
  all: unset;
  width: 100%;
  padding: 12px;
  text-align: left;
  display: inline-block;
  box-sizing: border-box;
  background-color: transparent;
  color: #3d8377;
  filter: none;
  font-size: 16pt;
}

button {
  margin-top: 40px;
  background-color: #3d8377;
  color: white;
  font-weight: bold;
  padding: 12px;
  border: none;
  cursor: pointer;
  border-radius: 25px;
  width: 100%;
  font-size: 16pt;
}

button:hover {
  opacity: 0.8;
}

#_password {
  margin-left: 11px;
  padding-left: 24px;
  background: url("/img/lock_FILL0_wght400_GRAD0_opsz48.png") no-repeat left;
  background-size: 18px;
}

#_email {
  margin-left: 10px;
  padding-left: 25px;
  background: url("/img/person_FILL0_wght400_GRAD0_opsz48.png") no-repeat left;
  background-size: 20px;
}

.msg {
  background-color: #bf6969;
  padding: 5px;
  padding-left: 22px;
  border-radius: 0px 0px 15px 15px;
  margin-top: -15px;
  margin-bottom: -15px;
  border-top: 5px solid white;
  font-size: 12px;
  color: white;
}

.container {
  background-color: white;
  padding: 10px;
  border-radius: 15px;
}

.sepline {
  margin-left: 12px;
  margin-right: 12px;
  border-top: 1px solid black;
}

.info {
    display: flex;
    flex-direction: column;
    margin-top: 9px;
}
.info .reset-password {
    text-align: right;
}
.info .error {
    margin-top: 12px;
}
.info .last-username {
    margin-top: 12px;
}

a {
  color: white;
  text-decoration: none;
}

.unselectable {

       -webkit-touch-callout: none;
       -webkit-user-select: none;
       -khtml-user-select: none;
       -moz-user-select: none;
       -ms-user-select: none;
        user-select: none;
        pointer-events: none;

}

#logo {
    display: block;
    width: 100%;
    margin:auto;
    margin-bottom: 60px;
    color: white;
}

@media only screen and (max-width: 1200px) {

  .hidden-mobile {
    display: none;
  }

}
