/*Animation Periods*/
/*Notification Colours*/
/*Login Page Colours*/
/*Sub Window*/
/*Image Cropper*/
/*Border Radii*/
body {
  color: #fff;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  min-height: 600px;
}

h2 {
  font-size: 1.2em;
}

/*form-container contains all forms for the login pages*/
.form-container {
  border-radius: 0px;
  flex-grow: 0;
  background: url(/Images/LoginPanelBackground.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: row;
  max-width: 440px;
  min-width: 300px;
  width: 100%;
  overflow-y: auto;
  /*centers all text blocks inside the form container*/
}
.form-container p {
  text-align: left;
}

/*Media queries for responsive login pages.*/
@media only screen and (max-width: 700px) {
  .form-container {
    max-width: 100vw;
    width: 100%;
  }
}
.form-gradient {
  /*Gradients are not well supported......*/
  background: -moz-linear-gradient(103deg, rgb(44, 64, 74) 26%, rgba(0, 0, 0, 0) 100%); /* FF3.6-15 */
  background: -webkit-linear-gradient(103deg, rgb(44, 64, 74) 26%, rgba(0, 0, 0, 0) 100%); /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(103deg, rgb(44, 64, 74) 26%, rgba(0, 0, 0, 0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="$loginGradientStart", endColorstr="#00000000",GradientType=0 ); /* IE6-9 */
  padding: 1em 2em;
  border-radius: 0px;
  width: 100%;
  flex-grow: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

#loginForm {
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 16px;
  max-width: 400px;
}

.form-title {
  text-align: left;
  font-weight: 100;
  margin: 0px;
}

/*form-group holds groups of form elements together*/
.form-group {
  margin: 16px 0px;
  /*Centers objects inside form group elements*/
  /*centers the button at the bottom of forms*/
  /*applies special padding to the button at the bottom of forms*/
}
.form-group a {
  display: flex;
  text-decoration: none;
}
.form-group.center {
  display: flex;
  justify-content: center;
}
.form-group.center-button {
  display: flex;
  margin: 20px 0px;
}
.form-group.center-button input[type=button], .form-group.center-button input[type=submit], .form-group.center-button input[type=reset] {
  padding-top: 5px;
  padding-bottom: 5px;
}

/*wrapper to size the textboxes correctly*/
.form-textbox-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.form-textbox-context {
  display: flex;
  flex-direction: row;
  position: relative;
}

.form-textbox-context > input {
  flex-grow: 1;
}

.form-textbox-icon-wrapper {
  width: 0;
  height: 100%;
}

img.form-textbox-icon {
  width: 20px;
  height: 20px;
  position: absolute;
  right: 0%;
  padding: 13px;
}

/*form-text-link is used for all simple text links on the login pages*/
.form-text-link {
  display: flex;
  margin: 4px 0px 4px 0px;
}
.form-text-link a {
  color: rgb(255, 255, 255);
  text-decoration: none;
  font-size: 0.8em;
}

/*form-button is used to apply the login page specific styling to buttons*/
/*contains and centers the logo displayed below the login forms*/
.form-bottom-logo-container {
  display: flex;
  justify-content: flex-start;
  /*scale the contained SVG to the right size*/
}
.form-bottom-logo-container img {
  width: 376px;
  height: 212px;
}

.form-error-message {
  background: rgba(255, 0, 0, 0.5);
  padding: 8px 2px;
  border-radius: 4px;
  font-size: 0.9em;
  text-align: center;
}
.form-error-message.validation-summary[class*=validation-summary-valid] {
  display: none;
}
.form-error-message ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

.form-image {
  height: 100%;
  flex-grow: 1;
  background: url(/Images/LoginpageBackground);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

/* form hint container */
.form-hintcontainer {
  background: rgb(14, 28, 38);
  padding: 4px 12px;
  border-radius: 4px;
}

h3.hintcontainer-title {
  margin: 4px 0px;
}

.hintcontainer-subtitle {
  font-size: 0.9em;
}

.hintcontainer-list {
  list-style-type: none;
  font-size: 0.9em;
  padding-left: 2%;
  margin: 4px 0px;
}

.hintcontainer-list > li {
  text-indent: -5px;
}

.hintcontainer-list > li:before {
  content: "-";
  margin: 3px;
}

/*text and password inputs*/
.form-textbox-context > select,
.form-textbox-context > input[type=text],
.form-textbox-context > input[type=password] {
  background: rgba(0, 0, 0, 0);
  border: 1px solid rgba(255, 255, 255, 0.67);
  border-radius: 0px;
  padding: 12px;
  color: #fff;
  font-size: 1em;
}

.form-textbox-context > select:focus,
.form-textbox-context > input[type=text]:focus,
.form-textbox-context > input[type=password]:focus {
  box-shadow: 0px 0 0px 0px rgba(255, 255, 255, 0.67);
  outline: none;
}

/*input checkbox styling*/
.input-checkmark {
  cursor: pointer;
  display: flex;
  width: 14px;
  height: 14px;
  margin: 3px;
}

.input-checkmark input[type=checkbox] {
  opacity: 0;
  position: absolute;
  width: 0px;
  height: 0px;
}

.input-checkmark input[type=checkbox] ~ span {
  width: 10px;
  height: 10px;
  border: 2px solid rgb(255, 255, 255);
  position: absolute;
  border-radius: 2px;
}

.input-checkmark input[type=checkbox]:checked ~ span {
  background: rgb(0, 171, 218);
  border: 2px solid rgb(0, 171, 218);
}

.input-checkmark:hover input[type=checkbox] ~ span {
  background: rgba(29, 46, 57, 0.65);
}

.input-checkmark:hover input[type=checkbox]:checked ~ span {
  background: rgb(0, 171, 218);
  border: 2px solid rgb(0, 171, 218);
}

/*button styling*/
input[type=button], input[type=submit], input[type=reset] {
  border: none;
  background: rgb(14, 28, 38);
  color: rgb(255, 255, 255);
  padding: 7px 30px;
  border-radius: 4px;
  cursor: pointer;
  font-size: 0.9em;
}

input[type=button]:hover, input[type=submit]:hover, input[type=reset]:hover {
  background: rgb(0, 171, 218);
}

input[type=button]:focus, input[type=submit]:focus, input[type=reset]:focus {
  outline: none;
}

/*Access Request Form*/
.access-request-form {
  display: flex;
  flex-direction: column;
}

.access-request-form > div {
  margin: 2px 0;
}

.request-form-textfield {
  width: 100%;
}

.request-form-dualcontrol {
  display: flex;
  flex-direction: row;
}

.request-form-dualcontrol-spacer {
  width: 10px;
}

.request-form-codefield {
  width: 250px;
}

.access-request-form > .request-form-button-container {
  margin: 20px 0;
}

.request-form-button-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
}

.login-form-displayoutput {
  background: #243845;
  padding: 12px;
  border-radius: 4px;
}

.login-form-displayoutput > h3 {
  margin-top: 0px;
}

.reject-form-dualcontrol {
  display: flex;
  flex-direction: row;
}

.reject-form-dualcontrol > div {
  width: 50%;
}

.reject-form-input {
  width: 100%;
}

.reject-form-button-container {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  margin: 20px 0px;
}

/* Text Display*/
.text-display {
  display: flex;
  flex-direction: column;
  margin: 8px 0px;
}

.text-display-title {
  font-size: 0.6em;
}

.text-display-value {
  height: 20px;
}

/* T&C link */
.tc-link {
  margin: 0 0 0 4px;
  color: #00ABDA;
}

.tc-link:hover {
  color: rgb(6, 149, 188);
}

.tc-link:active {
  color: rgb(170, 170, 170);
}

.tc-changenotice {
  font-size: 10pt;
  margin-left: 20px;
  color: rgb(170, 170, 170);
}

.yellow {
  color: #ffd400;
}

.indent {
  padding: 0 0 0 40px;
}

.form-label-stack {
  flex-direction: column;
}

.form-label {
  display: flex;
}

.form-label label:first-child {
  flex-grow: 1;
  max-width: 100px;
}

/* User Invite */
#user-invite-root {
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  gap: 16px;
  margin-top: 16px;
  padding-bottom: 32px;
}
#user-invite-root .user-invite-container {
  align-items: center;
  display: flex;
  flex-direction: column;
  grid-gap: 1em;
}
#user-invite-root .user-invite-container .message-container {
  font-size: 16px;
  display: flex;
  flex-direction: column;
}
#user-invite-root .user-request-form {
  display: flex;
  flex-direction: column;
}
#user-invite-root .request-form-button-container {
  margin: 20px 0;
}
