* {
  font-family: 'Roboto', sans-serif;
}

body {
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow-y: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #142c56;
  height: 100vh;
}

.failed {
  display: none;
  text-align: center;
  border-style: solid;
  border-width: 1px;
  border-color: red;
  border-radius: 5px;
  padding: 5px;
  background-color: #FBE6E6;
}

.failed-active {
  display: block;
}

.logo {
  width: 25em;
  margin: 2em;
  padding-top: 3em;
  border-style: solid;
  border-width: 0;
  border-bottom-color: #ccc;
  border-bottom-width: 1px;
}

.screen-1 {
  background: #fff;
  box-shadow: 0 0 0.25em #ccc;
  padding: 2em;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border-style: solid;
  border-color: #D1D5D5;
  border-width: 2px;
  gap: 2em;
}
.screen-1 .logo {
  margin-top: -3em;
}
.screen-1 .email {
  background: white;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  border-radius: 20px;
  color: #4d4d4d;
  margin-top: -3em;
}
.screen-1 .email input {
  outline: none;
  border: none;
  min-width: 15em;
}
.screen-1 .email input::-moz-placeholder {
  color: black;
  font-size: 0.9em;
}
.screen-1 .email input:-ms-input-placeholder {
  color: black;
  font-size: 0.9em;
}
.screen-1 .email input::placeholder {
  color: #ccc;
  font-size: 0.9em;
}
.screen-1 .email ion-icon {
  color: #4d4d4d;
  margin-bottom: -0.2em;
}
.screen-1 .password {
  background: white;
  padding: 1em;
  display: flex;
  flex-direction: column;
  gap: 0.5em;
  border-radius: 20px;
  color: #4d4d4d;
}
.screen-1 .password input {
  outline: none;
  border: none;
  min-width: 15em;
}
.screen-1 .password input::-moz-placeholder {
  color: black;
  font-size: 0.9em;
}
.screen-1 .password input:-ms-input-placeholder {
  color: black;
  font-size: 0.9em;
}
.screen-1 .password input::placeholder {
  color: #ccc;
  font-size: 0.9em;
}
.screen-1 .password ion-icon {
  color: #4d4d4d;
  margin-bottom: -0.2em;
}
.screen-1 .login {
  padding: 1em;
  background: #6BA300;
  color: white;
  border: none;
  border-radius: 10px;
  font-weight: 600;
  float: right;
}
.screen-1 .footer {
  display: flex;
  font-size: 0.7em;
  color: #5e5e5e;
  gap: 14em;
  padding-bottom: 10em;
}
.screen-1 .footer span {
  cursor: pointer;
}

button {
  cursor: pointer;
}

.divider {
  border-color: #ccc;
  border-style: solid;
  border-width: 0;
  border-top-width: 1px;
  padding-top: 5px;
}