﻿/*Themes Colour*/
/*Font Family*/
body {
  height: 100%;
}
main {
  height: 100%;
  padding: 0;
  background: #e8eeef;
  background-image: url(/images/login-bckg.webp);
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: center;
  background-size: 1785px 500px;
}
.login-page-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  height: 100%;
}
.login-page-username-label {
  color: #1c5466;
  font-weight: 600;
  width: 100%;
  font-size: 16px;
}
.login-page-password-label {
  color: #1c5466;
  font-weight: 600;
  width: 100%;
  font-size: 16px;
}
.login-page-continue-btn {
  font-size: 18px;
  margin-top: 8px;
}
.login-page-continue-btn.invalid {
  margin-top: 40px;
}
.login-page-submit-btn {
  font-size: 18px;
  margin-top: 8px;
  margin-bottom: 15px;
}
.login-page-submit-btn.invalid {
  margin-top: 40px;
}
.login-page-wrapper {
  display: flex;
  flex-flow: column;
  align-items: center;
}
.login-input-forgot-password {
  display: block;
  z-index: 1;
  font-weight: 500;
  margin-bottom: 0.5rem;
  color: #1c5466;
}
.login-input-forgot-password:hover {
  cursor: pointer;
  text-decoration: underline;
}
.login-input-back-btn {
  transition: all 0.33s ease;
  justify-content: center;
  position: absolute;
  top: 0px;
  left: 0;
  border: solid 1px #1c5466;
  border-top-color: transparent;
  border-left-color: transparent;
  border-radius: 5px 0px;
  background-color: rgba(28, 84, 102, 0.025);
}
.login-input-back-btn .dx-icon {
  color: #1c5466;
  height: 1.2em;
  width: 1.2em;
  border-radius: 100%;
  margin: 10px;
}
.login-input-back-btn:hover {
  border-color: transparent !important;
  background-color: transparent !important;
}
.login-input-back-btn:active {
  border-color: transparent;
  background-color: transparent;
  box-shadow: none;
  transform: translateY(3px);
}
.login-input-back-btn.hidden {
  opacity: 0;
  visibility: hidden;
}
.login-input-options-container {
  display: flex;
  flex-flow: row;
  width: 100%;
  justify-content: center;
  margin-bottom: 2vh;
}
.login-input-user-info-container {
  display: flex;
}
.login-input-user-info-container-name {
  color: #1c5466;
  font-weight: 500;
}
.login-input-user-info-container-name::after {
  color: black;
  content: '-';
  padding-left: 4px;
  margin: 0 2px;
}
.login-input-user-info-container-not-you {
  margin-left: 3px;
}
.login-input-user-info-container-not-you:hover {
  text-decoration: underline;
  cursor: pointer;
}
.login-input-container {
  background: white;
  display: flex;
  flex-flow: column;
  align-items: center;
  text-align: center;
  justify-content: initial;
  border-radius: 5px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  height: 100%;
  width: 40vw;
  min-width: 35rem;
  z-index: 1;
  overflow: hidden;
  position: relative;
  justify-content: space-evenly;
  padding: 3.5rem 6vw;
}
.login-input-container::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: -35px;
  width: 50%;
  height: 85%;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0.025;
  background-image: url(/images/layout/core-logo2.png);
  z-index: 0;
}
.login-input-container.error-message {
  padding-top: 2%;
}
.login-input-container.set-password {
  padding: 3em 6em;
  justify-content: initial;
}
.login-input-title {
  color: #1c5466;
  font-size: 28px;
  letter-spacing: 2px;
  font-weight: 600;
}
.login-input-assistance {
  display: block;
  z-index: 1;
  font-size: 14px;
}
.login-input-assistance-here-link {
  display: inline-flex;
  color: #1c5466;
  font-weight: 500;
}
.login-input-assistance-here-link:hover {
  cursor: pointer;
  text-decoration: underline;
}
.login-multiview {
  width: 100%;
  min-height: 12rem;
}
.login-multiview-container {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  row-gap: 1vh;
  height: 100%;
  min-height: 0;
  padding: 4px;
}
.login-get-subscription-container {
  padding: 1rem;
  width: 24vw;
  min-width: 25rem;
  background: #1c5466;
  border-radius: 0 0 15px 15px;
  box-shadow: 0px 0px 30px rgba(0, 0, 0, 0.3);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 1px;
}
.login-get-subscription-container:hover {
  text-decoration: underline;
  cursor: pointer;
}
.login-error-message {
  color: red;
  padding: 0px 10%;
  font-size: 14px;
  margin-bottom: 10px;
}
/*Set Password styling*/
.set-password-title {
  font-size: 20px;
  font-weight: 600;
}
.set-password-requirements {
  margin-top: 5%;
  text-align: left;
  font-size: 14px;
  font-weight: 300;
}
.set-password-username {
  font-size: 17px;
  font-weight: 600;
}
.set-password-form {
  width: 100%;
  text-align: left;
  justify-content: center;
  margin-top: 4%;
  margin-bottom: auto;
}
.set-password-continue-button {
  margin-top: 30px;
  text-align: center;
}
/*Forgot Password styling*/
.forgot-password-container {
  display: flex;
  justify-content: center;
  flex-flow: column;
  align-items: center;
  row-gap: 1vh;
  width: 100%;
  min-height: 250px;
  z-index: 1;
}
.forgot-password-request-btn {
  margin-top: 8px;
  font-size: 18px;
}
.forgot-password-request-btn.invalid {
  margin-top: 40px;
}
.core-popup-content br {
  display: block;
  content: " ";
  margin: 1rem;
}