@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

#vcm-login-root {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  height: 100vh;
  font-family: 'DM Sans', sans-serif;
  font-weight: 300;
  position: relative;
  overflow: hidden;
}

/* Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,400;1,600&family=DM+Sans:wght@300;400;500&display=swap');

#vcm-login-root * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* Top bar */
#vcm-login-root .vcm-top-bar {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1a2744 0%, #2a5caa 40%, #c9a84c 75%, transparent 100%);
  z-index: 10;
}

/* ── LEFT PANEL ── */
#vcm-login-root .vcm-left {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  padding: 48px 48px 48px 48px;
  background: #1a2744;
  position: relative;
  overflow: hidden;
}

#vcm-login-root .vcm-left::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
}

#vcm-login-root .vcm-left::after {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.05);
  bottom: -200px;
  right: -200px;
  pointer-events: none;
}

#vcm-login-root .vcm-left-orb {
  position: absolute;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(42, 92, 170, 0.35) 0%, transparent 65%);
  bottom: -150px;
  right: -150px;
  pointer-events: none;
}

#vcm-login-root .vcm-left-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 680px;
  gap: 32px;
}

#vcm-login-root .vcm-brand img {
  height: 68px;
  width: auto;
  object-fit: contain;
  filter: brightness(1.1);
}

#vcm-login-root .vcm-hero-eyebrow {
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#vcm-login-root .vcm-hero-eyebrow::before {
  content: '';
  display: block;
  width: 24px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

#vcm-login-root .vcm-hero-version {
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 12px;
}

#vcm-login-root .vcm-hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(34px, 3.4vw, 34px);
  font-weight: 300;
  line-height: 1.13;
  color: #ffffff;
  margin-bottom: 22px;
}

#vcm-login-root .vcm-hero-title em {
  font-style: italic;
  color: #c9a84c;
}

#vcm-login-root .vcm-hero-desc {
  font-size: 16px;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.5);
  max-width: 360px;
}

#vcm-login-root .vcm-hero-desc strong {
  color: rgba(255, 255, 255, 0.8);
  font-weight: 400;
}

#vcm-login-root .vcm-features {
  padding-top: 4px;
}

#vcm-login-root .vcm-features-heading {
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

#vcm-login-root .vcm-feature-list {
  list-style: none;
  display: flex;
  flex-direction: column;
}

#vcm-login-root .vcm-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: background 0.2s;
  cursor: default;
}

#vcm-login-root .vcm-feature-item:last-child {
  border-bottom: none;
}

#vcm-login-root .vcm-feature-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #c9a84c;
  flex-shrink: 0;
  opacity: 0.7;
  transition: opacity 0.2s;
}

#vcm-login-root .vcm-feature-item:hover .vcm-feature-dot {
  opacity: 1;
}

#vcm-login-root .vcm-feature-title {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.3;
  letter-spacing: 0.01em;
  transition: color 0.2s;
}

#vcm-login-root .vcm-feature-item:hover .vcm-feature-title {
  color: rgba(255, 255, 255, 0.9);
}

/* ── RIGHT PANEL ── */
#vcm-login-root .vcm-right {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 52px 96px 52px 80px;
  background: #f4f6fb;
  position: relative;
}

#vcm-login-root .vcm-right::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(42, 92, 170, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(42, 92, 170, 0.04) 1px, transparent 1px);
  background-size: 52px 52px;
  pointer-events: none;
}

#vcm-login-root .vcm-form-card {
  width: 100%;
  max-width: 390px;
  position: relative;
  z-index: 1;
  animation: vcmFadeUp 0.65s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes vcmFadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

#vcm-login-root .vcm-form-header {
  margin-bottom: 36px;
}

#vcm-login-root .vcm-form-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 400;
  color: #1a2744;
  margin-bottom: 6px;
}

#vcm-login-root .vcm-form-header p {
  font-size: 14px;
  color: #6b7694;
}

#vcm-login-root .vcm-form-group {
  margin-bottom: 18px;
}

#vcm-login-root .vcm-label {
  display: block;
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #6b7694;
  margin-bottom: 8px;
}

#vcm-login-root .vcm-input-wrap {
  position: relative;
}

#vcm-login-root .vcm-input-wrap .vcm-input-icon {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  stroke: #a8afc7;
  transition: stroke 0.2s;
  pointer-events: none;
}

#vcm-login-root .vcm-input {
  width: 100%;
  background: #ffffff;
  border: 1.5px solid rgba(26, 39, 68, 0.08);
  border-radius: 6px;
  padding: 13px 16px 13px 42px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  font-weight: 300;
  color: #1a2744;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 24px rgba(26, 39, 68, 0.08);
  -webkit-appearance: none;
}

#vcm-login-root .vcm-input::placeholder {
  color: #a8afc7;
}

#vcm-login-root .vcm-input:focus {
  border-color: #2a5caa;
  box-shadow: 0 0 0 3px rgba(42, 92, 170, 0.1), 0 4px 24px rgba(26, 39, 68, 0.08);
}

#vcm-login-root .vcm-input:focus~.vcm-input-icon {
  stroke: #2a5caa;
}

#vcm-login-root .vcm-pw-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
  color: #a8afc7;
  transition: color 0.2s;
  display: flex;
  align-items: center;
}

#vcm-login-root .vcm-pw-toggle:hover {
  color: #6b7694;
}

#vcm-login-root .vcm-footer-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

#vcm-login-root .vcm-remember {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 14px;
  color: steelblue;
  user-select: none;
}

#vcm-login-root .vcm-remember input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  margin: 0;
}

#vcm-login-root .vcm-remember input[type="checkbox"]:focus-visible ~ .vcm-checkbox-box {
  outline: 2px solid #2a5caa;
  outline-offset: 2px;
}

#vcm-login-root .vcm-checkbox-box {
  width: 15px;
  height: 15px;
  border: 1.5px solid rgba(26, 39, 68, 0.08);
  border-radius: 3px;
  background: #ffffff;
  display: grid;
  place-items: center;
  transition: background 0.2s, border-color 0.2s;
  box-shadow: 0 4px 24px rgba(26, 39, 68, 0.08);
  flex-shrink: 0;
}

#vcm-login-root .vcm-remember input:checked~.vcm-checkbox-box {
  background: #2a5caa;
  border-color: #2a5caa;
}

#vcm-login-root .vcm-checkbox-box svg {
  width: 9px;
  height: 9px;
  stroke: #ffffff;
  stroke-width: 2.5;
  opacity: 0;
  transition: opacity 0.15s;
}

#vcm-login-root .vcm-remember input:checked~.vcm-checkbox-box svg {
  opacity: 1;
}

#vcm-login-root .vcm-forgot {
  font-size: 13px;
  color: #2a5caa;
  text-decoration: none;
  transition: color 0.2s;
}

#vcm-login-root .vcm-forgot:hover {
  color: #3d75cc;
}

#vcm-login-root .vcm-btn-login {
  width: 100%;
  padding: 14px;
  background: #1a2744;
  border: none;
  border-radius: 6px;
  font-family: 'DM Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #ffffff;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: background 0.2s, transform 0.15s;
  box-shadow: 0 4px 16px rgba(26, 39, 68, 0.2);
}

#vcm-login-root .vcm-btn-login::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform 0.5s;
}

#vcm-login-root .vcm-btn-login:hover::after {
  transform: translateX(100%);
}

#vcm-login-root .vcm-btn-login:hover {
  background: #243059;
}

#vcm-login-root .vcm-btn-login:active {
  transform: scale(0.985);
}

/* Demo card */
#vcm-login-root .login-results-area {
  /* margin: 16px 0 0 88px; */
  /* color:blue !important;  */
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 12px;
  align-items: center;
  margin: 10px 0 0 0;
  border: none;
  padding: 0;
}

@media (max-width: 900px) {
  #vcm-login-root {
    grid-template-columns: 1fr;
  }

  #vcm-login-root .vcm-left {
    display: none;
  }

  #vcm-login-root .vcm-right {
    justify-content: center;
    padding: 40px 32px;
  }
}



.login-warning-new {
  display: inline-block;
  width: 380px;
  height: auto;
  margin: 10px 0 0 0 !important;
  padding: 8px 10px !important;
  font-size: 0.9rem !important;
  text-align: center;
  background-color: var(--color-background);
  border: none !important;
}

.login-warning-new:empty {
  display: none;
}


#vcm-login-root .vcm-policy-desc {
  font-size: 14px;
  color: #555;
  line-height: 1.6;
}