body { margin:0; height:100vh; overflow:hidden; font-family: Helvetica, Arial, sans-serif; }



.formbox {
	width: 100%;
	height: 100%;
	padding: 15px 7px 40px 7px;
	overflow:hidden;
	
}


* {
  box-sizing: border-box;
}

		
/* Remove/replace the old global footer rule with this */
.login-footer {
  width: 420px;              /* same as .wrap-login */
  margin: 0 auto;            /* center under the card */
  text-align: center;
  padding: 10px 0;
  font-family: sans-serif;
  font-size: 12px;
  color: #f2f2f2;
  white-space: nowrap;       /* keep it on one line */
  overflow: hidden;
  text-overflow: ellipsis;   /* truncate crazy-long domains nicely */
}



.modal.show { display:flex !important; align-items:center; justify-content:center;}
		
.msg { display:none; margin:5px 0; font-size:13px; text-align:right; }

.msg.error { color:#b00020; }

.msg.ok { color:#1b5e20; }

.copyright { margin-top:20px; font-size:12px; color:white; text-align:center; }

.logo { width:100%; text-align:left; overflow:hidden; background:#f6f6f6; padding:13px 10px 13px 12px; border-radius:0; font-size:14px; font-family:sans-serif; color:#2D3A46; margin-bottom:16px; }

.logo-sub {
  font-size: 13px;
  font-weight: 500;
  color: #424B54;
  margin-bottom: 0;
  font-style: italic;
}



/* .domnam { white-space: nowrap; text-overflow: ellipsis; text-align:left; overflow: hidden; color:#34485b; font-size: 18px; } */

.modal-body { padding:0; background:transparent; border: 0;}
.modal-content { background:transparent; box-shadow:none; border:0;}

.wrap-login { width:420px; background:#fff; border-radius:1px; box-shadow:0 10px 40px rgba(0,0,0,0.25); padding:40px 35px; text-align:center;}

.wrap-login h3 { margin:0 0 18px 0; font-weight:200; color:#333; }

.form-control { height:50px; margin-bottom:14px; }

.password-wrap { position:relative; }

.password-input { padding-right:44px; /* space for the eye */ }

.password-toggle { position:absolute; right:10px; top:50%; transform:translateY(-50%); display:flex; align-items:center; justify-content:center; width:30px; height:30px; border:0; background:transparent; color:#6b7280; cursor:pointer; transition:color .15s ease, opacity .15s ease; opacity:.85; }

.password-toggle:hover { color:#111827; opacity:1; }

.password-toggle:active { transform:translateY(-50%) scale(.96); }

/* Slashed-eye state */
.password-toggle.visible svg::after { content:''; position:absolute; width:22px; height:2px; background:currentColor; transform:rotate(-45deg); }

#togglePassword:hover { color:#111827 !important; opacity:1 !important; }

#togglePassword:active { transform:translateY(-50%) scale(.96) !important; }

.input-error { border-color:#c50f1f !important; box-shadow:0 0 0 1px rgba(197,15,31,0.15); }

.input-error:focus { border-color:#a80000 !important; box-shadow:0 0 0 2px rgba(197,15,31,0.25); }

/* Base button */
.btn-holder .btn {
  background: #0079d9;              /* main brand blue */
  font-family: Arial, sans-serif;
  border: none;
  padding: 10px 20px;
  color: #fff;
  margin-top: 1px;
  margin-bottom: 7px;
  border-radius: 0;
  font-size: 16px;
  letter-spacing: .4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;                          /* space between spinner & text */
  transition:
    background-color .15s ease,
    box-shadow .15s ease,
    transform .05s ease,
    opacity .15s ease;
}

/* Hover – only when NOT disabled */
.btn-holder .btn:hover:not(:disabled) {
  background: #0064b8;
  box-shadow: 0 2px 4px rgba(0, 0, 0, .18);
  transform: translateY(-1px);
}

/* Active press – only when NOT disabled */
.btn-holder .btn:active:not(:disabled) {
  background: #00549b;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .18);
  transform: translateY(0);
}

/* Focus ring for keyboard users */
.btn-holder .btn:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
  box-shadow: 0 0 0 3px rgba(0, 121, 217, .45);
}

/* Disabled state – used when “Signing in…” */
.btn-holder .btn:disabled,
.btn-holder .btn.is-busy {
  background: #7fb7e5;
  cursor: default;
  box-shadow: none;
  transform: none;
  opacity: 0.95;
}

/* Spinner (small circular loader) */
.spinner {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(255, 255, 255, .4);
  border-top-color: #ffffff;
  animation: spin .6s linear infinite;
  display: inline-block;
  vertical-align: middle;
}

/* if you ever want it hidden by default via CSS instead of inline style */
.spinner[style*="display:none"] {
  animation: none;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* Checkbox + label refinement */
.form-check-input {
  width: 16px;
  height: 16px;
  margin-top: 2px;
  margin-right: 6px;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

.form-check-label {
  color: #5a5a5a;
  font-size: 13px;
  font-weight: 400;
  cursor: pointer;
  font-family: Arial, sans-serif;
}

/* Windows/Microsoft-like focus */
.form-check-input:focus-visible {
  outline: 2px solid #0079d9;
  outline-offset: 2px;
}

/* Checked state color (Deep blue like MS) */
.form-check-input:checked {
  background-color: #0079d9;
  border-color: #0079d9;
}



input[type="password"]::placeholder {
  color: #9ca3af !important;
}

#email {
  font-size: 17px;
}