/* LOGIN PAGE STYLES */
.auth-container {
  height: 100vh;
  background-color: var(--light-colors-light, #F8F9FA);
  display: flex;
  align-items: center;
  justify-content: center;
}

.la-container {
  width: 450px;
  padding: 2.5rem 1.25rem;
  border-radius: 8px;
  border: 1px solid var(--border-light);
  background: #FFF; 
}

.logo-container {
  display: flex;
  justify-content: center;
  margin: 10px 0;
}

.show-password-icon {
  position: absolute;
  top: 28px;
  right: 0;
  margin-right: 12px;
  font-size: 1.25rem;
  color: var(--brand-primary-dark-blue);
  cursor: pointer;
}

.show-password-icon:hover {
  color: var(--border-dark);
}

@media only screen and (max-width: 576px) {
  .la-container {
    width: fit-content;
    margin: 0 0.5rem;
  }
}