:root{
  --delta-blue-900:#0b2a6f;
  --delta-blue-700:#0d5bd7;
  --delta-blue-600:#1b6dff;
  --delta-text:#0f172a;
  --delta-muted:#64748b;
  --delta-border:#e2e8f0;
  --delta-card:#ffffff;
}

html,
body.delta-login{
  width:100%;
  height:100%;
  margin:0;
  padding:0;
  min-height:100vh;
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  background:#e3ebf9;
  overflow:hidden;
}

.delta-login__wrap{
  width:100vw;
  height:100vh;
  min-height:100vh;
  display:flex;
  align-items:center;
  position:relative;
  overflow:hidden;
  background-image: url("../images/login.png");
  background-size: cover;
  background-position: center center;
  background-repeat:no-repeat;
}

.delta-login__left{
  flex:0 0 48%;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:48px 32px;
  position:relative;
  overflow:hidden;
  background:transparent;
  z-index:1;
}

.delta-login__card{
  width:min(480px, 92%);
  background:var(--delta-card);
  border-radius:16px;
  padding:38px 42px 30px;
  border:1px solid rgba(226,232,240,0.95);
  box-shadow: 0 18px 55px rgba(15,23,42,0.14);
  position:relative;
  z-index:1;
}

.delta-login__brand{
  margin-bottom:18px;
}

.delta-login__logo{
  height:92px;
  width:auto;
  display:inline-block;
  margin-bottom:6px;
}

.delta-login__logo--wordmark{
  height:78px;
  max-width:320px;
}

.delta-login__tagline{
  color:var(--delta-blue-900);
  font-size:14px;
  font-weight:500;
  opacity:0.95;
}

.delta-login__divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  margin-top:14px;
}

.delta-login__divider span{
  height:1px;
  width:88px;
  background: rgba(148,163,184,0.55);
}

.delta-login__divider i{
  width:6px;
  height:6px;
  border-radius:50%;
  background:#22c55e;
  display:inline-block;
}

.delta-login__title{
  color:var(--delta-text);
  font-weight:800;
  letter-spacing:-0.3px;
}

.delta-login__subtitle{
  color:var(--delta-muted);
  font-size:14px;
}

.delta-login__label{
  font-weight:600;
  color:#0f172a;
  margin-bottom:8px;
}

.delta-login__control{
  display:flex;
  align-items:center;
  gap:10px;
  border-radius:10px;
  border:1px solid rgba(203,213,225,0.85);
  background:#fff;
}

.delta-login__control:focus-within{
  border-color: rgba(13,91,215,0.55);
  box-shadow: 0 0 0 4px rgba(13,91,215,0.10);
}

.delta-login__iconbox{
  width:36px;
  height:34px;
  border-radius:8px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#475569;
  background:#fff;
  flex:0 0 auto;
}

.delta-login__iconbox i{
  font-size:18px;
  line-height:1;
}

.delta-login__iconbox--button{
  cursor:pointer;
}

.delta-login__input{
  flex:1 1 auto;
  border:0;
  outline:none;
  background:#fff;
  padding:0;
  font-size:14px;
  color:var(--delta-text);
}

.delta-login__input:focus{
  box-shadow:none;
}

.delta-login__input:-webkit-autofill,
.delta-login__input:-webkit-autofill:hover,
.delta-login__input:-webkit-autofill:focus,
.delta-login__input:-webkit-autofill:active{
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: var(--delta-text) !important;
  caret-color: var(--delta-text);
  transition: background-color 9999s ease-out;
}

.delta-login__toggle{
  border:0;
}

#deltaEmail, #deltaPassword {
  padding: 10px;
  border-radius: 10px;
}

.delta-login__remember{
  color:#334155;
  font-size:14px;
}

.delta-login .form-check-input{
  border-color: rgba(148,163,184,0.65);
}

.delta-login .form-check-input:focus{
  box-shadow: 0 0 0 4px rgba(13,91,215,0.10);
  border-color: rgba(13,91,215,0.40);
}

.delta-login .form-check-input:checked{
  background-color:#16a34a;
  border-color:#16a34a;
}

.delta-login__link{
  color: var(--delta-blue-700);
  font-weight:600;
  font-size:14px;
  text-decoration:none;
}

.delta-login__link:hover{
  text-decoration:underline;
}

.delta-login__link.disabled{
  opacity:0.45;
  pointer-events:none;
}

.delta-login__submit{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  border-radius:10px;
  padding:6px 14px;
  font-weight:700;
  color:#fff;
  background: linear-gradient(180deg, #1b6dff 0%, #0d5bd7 100%);
  border:0;
  box-shadow: 0 3px 3px rgba(13,91,215,0.30);
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: #64748b;
    font-size: 14px;
}

.secure-note i {
    color: #16a34a;
    font-size: 18px;
}

.delta-login__submit:hover{
  filter: brightness(0.98);
}

.delta-login__submit-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  display:flex;
  align-items:center;
  justify-content:center;
  background: rgba(255,255,255,0.12);
}

.delta-login__submit-icon i{
  font-size:18px;
}

.delta-login__errors{
  border-radius:12px;
}

.delta-login__bottom-divider{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:16px;
  margin-top:18px;
  margin-bottom:12px;
}

.delta-login__bottom-divider span{
  height:1px;
  width:120px;
  background: rgba(148,163,184,0.45);
}

.delta-login__bottom-icon{
  width:34px;
  height:34px;
  border-radius:10px;
  border:1px solid rgba(226,232,240,0.95);
  display:flex;
  align-items:center;
  justify-content:center;
  color: var(--delta-blue-700);
  background:#fff;
}

@media (max-width: 992px){
  .delta-login__wrap{
    align-items:flex-start;
    height:100vh;
    background-position: 62% center;
  }
  .delta-login__left{
    flex:1 1 auto;
    width:100%;
    padding:22px 12px;
  }
}

/* removed: .delta-login__seam */
