@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "DM Sans", sans-serif;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color:#f0f3f7;
}

body,html {
   font-family: "DM-Sans", sans-serif !important;
}
main {
   	width:700px;
	margin:auto;
}

#logo {
  text-align:center;
}

#logo img {
  width: 230px;
}

#main_div {
  padding:64px;
  border-radius: 12px !important;
  box-shadow: 0 4px 4px rgba(0, 0, 0, .25) !important;
  background-color: #fcfcfc;
}

#login{

}

#login-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

#login-section h1 {
  font-size: 40px;
  font-weight: 600;
  padding: 40px 0;
  color: #000;
}

input {
  width: 477px;
  height: 57px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
}

.InputTextField {
    font-size: 16px !important;
    font-family: "DM-Sans", sans-serif !important;
    padding: 20px 35px 20px 35px !important;
    border: 1px solid #4e4a4c !important;
    border-radius: 8px !important;
    background-color: #fff !important;
    /*border-left-width: 10px !important;*/
}

input[type="text"].DESVALFieldWithError, 
input[type="email"].DESVALFieldWithError, 
input[type="password"].DESVALFieldWithError, 
input[type="number"].DESVALFieldWithError, 
input[type="tel"].DESVALFieldWithError, 
select.DESVALFieldWithError, 
textarea.DESVALFieldWithError {
    /*border-left-width: 10px !important;*/
	background-color: #fff !important;
}
input:hover {
  box-shadow: none !important;
  outline: none !important;
}

input:focus {
  box-shadow: none !important;
  outline: none !important;
}

input::placeholder {
  color: #4e4a4c;
  font-weight: 300;
}

button {
  width: 477px;
  height: 48px;
  padding: 20px;
  background-color: #0087f7;
  color: white;
  border: none;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  transition: background-color 0.3s ease;
}

#forgot-password {
  display: block;
  text-align: center;
  margin-top: 40px;
  color: #000;
  text-decoration: none;
  font-weight: 700;
  font-size: 16px;
}

.FormItem {
	/*line-height:5px;*/
	width: unset;
	margin: unset;
	/*height: 90px;*/
}

.FormValidationText {
	float: unset;
	/*height: unset;*/
}

.FormValidationText img {
	position: relative;
    top: -40px;
    left: 13px;
}

.DESVALRequiredFieldMarker img {
	width:8px;
	z-index: 2;
}

.DESVALRequiredFieldsDescription {
	font-size: 0.9em;
}

.DESVALRequiredFieldsDescription img {
	width:8px;
	z-index: 2;
}


.FormInput, .InputTextField {
	width:100% !important;
}

.FormValidationText > span:nth-of-type(n + 2) img { 
	position: relative;
	width:13px;
	float:right;
	right:12px;
	left:unset;
	z-index: 2;
	top: -34px;
}

.FormValidationLabel span {
	position: relative;
    left: 5px;
    font-size: 0.9em;
}

.FormValidationLabel {
	height:80px;
}

.FormSubmit input {
	font-family:"DM-Sans", sans-serif;
	font-weight:700;
	font-size:1em;
	border-radius:100px;
}


    :root {
      --border: #c7c7d1;
      --border-focus: #1a73e8;
      --text: #1f2328;
      --muted: #6a6f76;
      --bg: #fff;
      --label-bg: #fff;
      --error: #d93025;
      --radius: 10px;
      --pad-x: 14px;
      --pad-y: 14px;
      /* Timings/Easing (symmetric for forward & reverse) */
      --label-dur: 225ms;
      --label-ease: cubic-bezier(.4,0,.2,1); /* ease-in-out but a bit snappier */
      --placeholder-dur: 150ms;
      --placeholder-ease: linear;
	  --otc-bg:unset !important;
    }


    /* Input */
    .FormInput > input {
      /*width: 100%;
      padding: var(--pad-y) var(--pad-x);
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      background: var(--bg);
      color: var(--text);
      outline: none;
      caret-color: var(--border-focus);*/
      transition: border-color var(--label-dur) var(--label-ease), box-shadow var(--label-dur) var(--label-ease) !important;
      line-height: 1.5;
      position: relative;
      z-index: 1;
    }

    .FormInput > input:focus {
		border-color: var(--border-focus) !important;
		box-shadow: 0 0 0 1px color-mix(in oklab, var(--border-focus) 100%, transparent) !important;
    }

    /* Placeholder visible initially; fade symmetrically on focus/blur */
    .FormInput > input::placeholder {
		color: var(--muted);
		opacity: 1;
		transition: opacity var(--placeholder-dur) var(--placeholder-ease) 75ms;
    }
    .FormItem:has(.FormInput > input:focus) .FormInput > input::placeholder { 
		opacity: 0; 
	}

    /* Floating label */
    .FormLabel {
		width:unset;
		position: relative;
		/*left: 28px;*/
		top: 50%;
		/*translate: 0 -50%;*/
		background: var(--label-bg);
		padding: 0 6px;
		color: #000;
		pointer-events: none;
		/*transition:
			translate var(--label-dur) var(--label-ease),
			top var(--label-dur) var(--label-ease),
			scale var(--label-dur) var(--label-ease),
			color var(--label-dur) var(--label-ease),
			opacity var(--label-dur) var(--label-ease);*/
		transform-origin: left center;
		z-index: 2;
		/*opacity: 0;*/
		will-change: transform, top;
		font-size: 0.9em;
	}


    /* Float & reveal when focused or has content */
    .FormItem:has(.FormInput > input:focus) .FormLabel,
    .FormItem:has(.FormInput > input:not(:placeholder-shown)) .FormLabel {
		top: 5px;
		translate: 0 -50%;
		/*scale: 0.85;*/
		color: var(--border-focus);
		opacity: 1;
    }

	.FormItem:has(.FormInput > input:focus) .FormLabel {
		/*color: var(--border-focus) !important;*/
	}
	
    /* Keep label visible (muted) when blurred but has value */
    .FormItem:has(.FormInput > input:not(:placeholder-shown)) .FormLabel { 
		color: #000; 
	}
	
	.forceLabel {
		top: 5px;
		translate: 0 -50%;
		scale: 0.85;
		color: var(--border-focus);
		opacity: 1;
color: var(--muted); 		
	}
	
#resetPasswordButton, #CancelPasswordResetButton1 {
	background: unset;
    color: blue;
    text-decoration: underline;
    height: 1.5em;
    width: unset;
    text-align: center;
    margin: auto;
}
#AuthenticationCode {
	line-height:normal;
}
.OtpInputField {
	scale:150% !important;
}
#cbMultiFactorAuthenticationRememberMe {
	width:1em;
}
#mpbModalPopupBox_MBGP {
	z-index:3 !important;
}
#mpbModalPopupBox_PCTRLP {
	z-index:5 !important;
}

input[type="submit"], input[type="button"] {
  background-color: #262AFF;
}

input[type="submit"]:hover, 
input[type="submit"]:active, 
input[type="submit"]:focus, 

input[type="button"]:hover, 
input[type="button"]:active, 
input[type="button"]:focus {
  background-color: #1B1EC6;
}

.ErrorMessage, .FormErrorMessage, .WarningMessage, .InfoMessage, .SuccessMessage {
   padding: 30px 20px 30px 100px;
   margin-bottom: unset;
}

#mpbModalPopupBox_PCTRLP_BPN_OKB, #mpbInstructionsHelp_PCTRLP_BPN_OKB {
   width: unset;
   height: unset;
   display: unset;
}

#AJAXUpdatePanel_Panel, #AJAXUpdatePanel_Spinner {
   z-index: 100;
}

#cbMultiFactorAuthenticationRememberMe {
    display: unset;
    width: 1em;
    height: 1em;
    margin-right: 10px;
}

#InstructionsHelpButton {
  width: auto;
  height:auto;
}

.PasswordBarBorder {
  width: 100% !important;
  height: 20px !important;
}

#tbNewPassword_BarIndicator {
  height: 16px !important;
  width: 100% !important;
}

.PasswordRed, .PasswordOrange, .PasswordGreen {
    background-size: 100%;
}

#InstructionsHelpButton {
  width: 2em;
  height: 2em;
  position: relative;
  left: 485px;
  top: -43px;
}

#ddlPasswordQuestion {
  width: 100%;
  height: 57px;
  border-radius: 8px;
  border: 1px solid #4e4a4c !important;
  padding-left: 30px;
  margin-bottom: 14px;
  margin-top: 14px;
}

#mpbInstructionsHelp + .FormItem > .FormInput {
   height: 56px;
}

ul {
    padding-left: 50px;
    padding-top: 10px;
    padding-bottom: 10px;
}

#MultiFactorAuthenticationButton {
    width:100%;
}

.FormInputTextOnly {
	font-weight: 600;
	font-size:0.9em;
}

.FormSubmit {
	margin-top: unset;
	margin-bottom: 20px;
}