* {
  padding: 0;
  margin: 0;
}


html,
body {
  height: 100%;
}



body {
  background-color: #f1f5ff;
}


.app-root {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}



.login-box {
  font-family: "Manrope";
  display: flex;
  flex-direction: row;
  padding: 60px;
  gap: 70px;
  background-color: #ffffff;
  border-radius: 15px;
  box-shadow: 0 10px 20px rgba(55, 55, 89, 0.0784313725);
}



.logo-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 50px;
}



.credentials-container {
  display: flex;
  flex-direction: column;
  flex: 1;
  justify-content: center;
  align-items: center;
}



.credentials {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 60px;
  width: 300px;
}



.credential {
  display: flex;
  flex-direction: column;
  gap: 5px;
  flex: 1;
}



.credential-label {
  font-size: 20px;
  /* font-weight: 500; */
}



.credential-input-text {
  flex: 1;
  filter: none;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  padding: 10px;
  font-size: 16px;
  font-weight: 400;
  outline: none;
  transition: border-color 0.15s ease-in-out;

  /* override firefox autofill color */
  box-shadow: 0 0 0 30px #ffffff inset !important;
}

.credential-input-text:hover {
  border-color: #505050;
}

.credential-input-text:focus {
  border-color: #3c06d9;
}

.credential-input-text[disabled]:hover {
  border-color: #d0d0d0;
}

.credential-input-text[disabled]:focus {
  border-color: #d0d0d0;
}

.credential-input-text-error {
  border-color: var(--error-color) !important;
}



.password-visibility {
  position: absolute;
  display: flex !important;
  height: calc(100% - 10px);
  top: 5px;
  right: 5px;
  align-items: center;
  padding-right: 3px;
  padding-left: 3px;
  cursor: pointer;
  border-radius: 5px;

  background-color: transparent;
  -webkit-transition: background-color 100ms ease-in-out;
  -ms-transition: background-color 100ms ease-in-out;
  transition: background-color 100ms ease-in-out;
}

.password-visibility:hover {
  background-color: #f0f0f0;
}

.password-visibility:active {
  background-color: #d0d0d0;
}


.password-visibility-icon {
  mask-repeat: no-repeat;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  width: 24px;
  height: 24px;
  padding: 3px;

  background-color: #000000;
  -webkit-transition: background-color 200ms linear;
  -ms-transition: background-color 200ms linear;
  transition: background-color 200ms linear;
}


::-ms-reveal {
  display: none;
}


.hidden-icon {
  mask-image: url(../img/password_visible.svg);
  -webkit-mask-image: url(../img/password_visible.svg);
}


.visible-icon {
  mask-image: url(../img/password_hidden.svg);
  -webkit-mask-image: url(../img/password_hidden.svg);
}




.login-button {
  font-family: "Manrope";
  display: flex;
  justify-content: center;
  outline: none;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  border: none;
  border-radius: 3px;
  padding: 15px 30px;
  background-color: #3c06d9;
  color: white;
  transition: background-color 0.15s ease-in-out;
}

.login-button:hover {
  background-color: #3b56b1;
}

.login-button:active {
  background-color: #2d48a3;
}










.athex-language-selector {
  display: flex;
  flex-direction: row;
  gap: 5px;
}


.athex-language-selector-lang-selected {
  background-color: #1a0069;
  color: #ffffff;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 6px;
  cursor: not-allowed;
  user-select: none;
  text-decoration: none !important;
  white-space: nowrap;
  border-radius: 2px;
}

.athex-language-selector-lang-not-selected {
  background-color: transparent;
  color: #1a0069;
  font-size: 14px;
  font-weight: 500;
  padding: 4px 6px;
  cursor: pointer;
  user-select: none;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 2px;
  border: 1px solid #1a0069;
}

.athex-language-selector-lang-selected:hover {
  color: #ffffff;
}

.athex-language-selector-lang-not-selected:hover {
  color: #1a0069;
}



.error-msg {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 15px;
  font-weight: 500;
  border-radius: 3px;
  background-color: #d5001f;
  color: #ffffff;
}




@media only screen and (max-width: 920px) {
  .login-box {
    flex-direction: column;
  }

  .logo-container {
    gap: 20px;
  }
}