* {
  box-sizing: border-box;
}

*:focus {
  outline: none;
}

body {
  font-family: Arial;
  font-size: 14px;
  color: #467AA7;
  background-color: #467AA7;
}

.control-group {
  margin-bottom: 10px;
}

.forms-wrapper {
  width: 340px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
  border-radius: 10px;
}

.logo, .buttons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

form {
  background-color: white;
  border-radius: 10px;
  padding: 20px;
}

select, input {
  color: #000000;
  background-color: #ECF0F1;
  border: 1px solid #CCCCCC;
  border-radius: 10px;
  font-size: 16px;
  font-weight: 200;
  padding: 10px;
  width: 300px;
  transition: border .5s;
}

input::placeholder {
  color:#999999;
}

button {
  background: #467AA7;
  color: #FFFFFF;
  font-size: 16px;
  line-height: 25px;
  padding: 10px;
  text-decoration: none;
  text-shadow: none;
  border-radius: 10px;
  box-shadow: none;
  transition: 0.25s;
  display: block;
  width: 100%;
  margin: 0 auto;
  border: 1px solid #006699;
  cursor: pointer;
}

button:hover {
  background-color: #006699;
  font-weight: bold;
}

input:focus, input:hover, select:focus, select:hover {
  border: 1px solid #467AA7;
  box-shadow: none;
}

.login-password-toggle-icon {
  position: absolute;
  left: 290px;
  top: 298px;
  font-size: 18px;
  opacity: 0.5;
  cursor: pointer;
  &:hover{
    opacity: 1;
  }
}

.url-color-blue:link, .url-color-blue:visited, .url-color-blue:active {
  color:#467AA7;
  text-decoration: none;
}

.url-color-blue:hover {
  text-decoration:underline;
}

.desktop-trim {
  display: none;
}

.hidden {
  display: none;
}

.font-color-white {
  color:#FFFFFF;
}

.font-color-red {
  color:#FF0000;
}

.bold {
  font-weight:bold;
}

.font-size-smaller {
  font-size: 8px;
}

.font-size-small {
  font-size: 10px;
}

.font-size-medium {
  font-size: 12px;
}

.font-size-large {
  font-size: 14px;
}

.font-size-larger {
  font-size: 16px;
}

.font-size-x-large {
  font-size: 18px;
}

.text-align-center {
  text-align:center;
}

.footer {
  width: 100%;
  color:#FFFFFF;
  text-align: center;
  position: absolute;
  bottom: 0;
  left: 0;
}

.absolute-center {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.lowercase {
  text-transform:lowercase;
}

.blow-out:hover {
  transform: scale(1.4);
  -webkit-transform: scale(1.4);
}

.swal2-title {
  font-family: Verdana, Geneva, sans-serif;
  font-size: 16px;
}

.url-color-white:link, .url-color-white:visited, .url-color-white:active, url-color-white:hover {
  color: #FFFFFF;
  text-decoration: none;
}

@media screen and (max-width: 1023px) {
  .forms-wrapper {
    width: 340px;
  }
  .desktop-trim {
    display: inline;
  }
}

@media screen and (max-width: 640px) {
  .forms-wrapper {
    width: 340px;
  }
  .desktop-trim {
    display: inline;
  }
  .keyboard-open .footer {
    display: none;
  }
}

@media screen and (max-width: 340px) {
  .forms-wrapper {
    width: 340px;
  }
  .desktop-trim {
    display: inline;
  }
  .keyboard-open .footer {
    display: none;
  }
}