:root {
  --cn-white: #ffffff;
  --cn-bg: #f6f8fc;
  --cn-bg-2: #eef4fb;

  --cn-navy: #0b1f3a;
  --cn-navy-2: #102f54;
  --cn-blue: #2559d6;
  --cn-teal: #13bfa6;
  --cn-orange: #ff9f1c;
  --cn-coral: #ff566d;
  --cn-red: #e43d54;

  --cn-text: #102033;
  --cn-muted: #64748b;
  --cn-soft-text: #8492a6;

  --cn-border: rgba(16, 32, 51, 0.11);
  --cn-border-strong: rgba(16, 32, 51, 0.16);

  --cn-success: #10b981;
  --cn-success-bg: #ecfdf5;
  --cn-danger: #ef4444;
  --cn-danger-bg: #fff1f2;

  --cn-shadow-sm: 0 10px 26px rgba(16, 32, 51, 0.08);
  --cn-shadow-md: 0 18px 44px rgba(16, 32, 51, 0.12);
  --cn-shadow-lg: 0 28px 80px rgba(16, 32, 51, 0.16);

  --cn-radius-sm: 14px;
  --cn-radius-md: 20px;
  --cn-radius-lg: 28px;
  --cn-radius-xl: 36px;

  --cn-container: 1180px;
  --cn-transition: all 0.25s ease;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  margin: 0;
  color: var(--cn-text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 8% 10%, rgba(19, 191, 166, 0.18), transparent 30%),
    radial-gradient(circle at 90% 8%, rgba(255, 86, 109, 0.14), transparent 28%),
    radial-gradient(circle at 72% 90%, rgba(255, 159, 28, 0.15), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, var(--cn-bg) 48%, #edf6ff 100%);
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input {
  font: inherit;
}

button {
  border: 0;
  cursor: pointer;
}

.cn-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.cn-bg {
  position: fixed;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.cn-grid {
  position: absolute;
  inset: 0;
  opacity: 0.55;
  background-image:
    linear-gradient(rgba(16, 32, 51, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(16, 32, 51, 0.045) 1px, transparent 1px);
  background-size: 42px 42px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.7), transparent 90%);
}

.cn-orb {
  position: absolute;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.85;
  animation: cnFloat 15s ease-in-out infinite;
}

.cn-orb-one {
  width: 360px;
  height: 360px;
  top: 82px;
  left: -140px;
  background: radial-gradient(circle, rgba(19, 191, 166, 0.22), transparent 68%);
}

.cn-orb-two {
  width: 390px;
  height: 390px;
  top: -140px;
  right: -120px;
  background: radial-gradient(circle, rgba(255, 86, 109, 0.2), transparent 70%);
  animation-delay: -4s;
}

.cn-orb-three {
  width: 340px;
  height: 340px;
  right: 14%;
  bottom: -160px;
  background: radial-gradient(circle, rgba(255, 159, 28, 0.2), transparent 72%);
  animation-delay: -8s;
}

.cn-container {
  position: relative;
  z-index: 1;
  width: min(calc(100% - 32px), var(--cn-container));
  margin: 0 auto;
}

.cn-header {
  position: relative;
  z-index: 3;
  padding: 20px 0 10px;
}

.cn-header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px 4px;
  border-bottom: 1px solid rgba(16, 32, 51, 0.08);
}

.cn-brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.cn-logo-plate {
  width: clamp(170px, 22vw, 280px);
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  padding: 12px 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.98));
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow:
    0 14px 32px rgba(16, 32, 51, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.cn-logo-plate img {
  width: 100%;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.cn-logo-fallback {
  max-width: 100%;
  overflow: hidden;
  color: var(--cn-navy);
  font-size: clamp(1rem, 2vw, 1.35rem);
  font-weight: 950;
  line-height: 1.1;
  letter-spacing: -0.04em;
  text-align: center;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cn-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(14px, 2.2vw, 30px);
  flex-wrap: wrap;
}

.cn-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  color: var(--cn-navy-2);
  font-size: 0.93rem;
  font-weight: 850;
  transition: var(--cn-transition);
}

.cn-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 2px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--cn-teal), var(--cn-blue), var(--cn-coral));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.24s ease;
}

.cn-nav a:hover {
  color: var(--cn-blue);
}

.cn-nav a:hover::after {
  transform: scaleX(1);
}

.cn-nav .cn-nav-cta {
  color: var(--cn-coral);
}

.cn-nav .cn-nav-cta:hover {
  color: var(--cn-red);
}

.cn-main {
  padding: 16px 0 30px;
}

.cn-login-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 460px;
  gap: 22px;
  align-items: stretch;
}

.cn-welcome-panel,
.cn-form-card {
  min-height: 640px;
  border-radius: var(--cn-radius-xl);
}

.cn-welcome-panel {
  position: relative;
  overflow: hidden;
  padding: clamp(30px, 5vw, 58px);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.88), rgba(255, 255, 255, 0.62));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--cn-shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.cn-welcome-panel::before {
  content: "";
  position: absolute;
  width: 520px;
  height: 520px;
  left: -240px;
  bottom: -260px;
  border-radius: 50%;
  background:
    conic-gradient(
      from 180deg,
      rgba(19, 191, 166, 0.28),
      rgba(37, 89, 214, 0.24),
      rgba(255, 86, 109, 0.22),
      rgba(255, 159, 28, 0.24),
      rgba(19, 191, 166, 0.28)
    );
  animation: cnSlowSpin 20s linear infinite;
}

.cn-welcome-panel::after {
  content: "";
  position: absolute;
  width: 220px;
  height: 220px;
  right: 36px;
  top: 38px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(37, 89, 214, 0.12), transparent 68%);
}

.cn-welcome-content {
  position: relative;
  z-index: 2;
  max-width: 650px;
  animation: cnFadeUp 0.7s ease both;
}

.cn-site-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 9px 13px;
  overflow: hidden;
  color: var(--cn-navy);
  font-size: 0.86rem;
  font-weight: 950;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.08);
  text-overflow: ellipsis;
  white-space: nowrap;
}

.cn-site-badge i {
  flex: 0 0 auto;
  color: var(--cn-teal);
}

.cn-welcome-content h1 {
  margin: 0;
  max-width: 600px;
  color: var(--cn-navy);
  font-size: clamp(2.6rem, 6vw, 6.2rem);
  line-height: 0.9;
  letter-spacing: -0.085em;
}

.cn-welcome-content p {
  max-width: 560px;
  margin: 24px 0 0;
  color: var(--cn-muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.cn-feature-list {
  display: grid;
  gap: 12px;
  max-width: 540px;
  margin-top: 34px;
}

.cn-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  max-width: 100%;
  padding: 12px 15px;
  color: var(--cn-navy-2);
  font-size: 0.95rem;
  font-weight: 850;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(16, 32, 51, 0.08);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.065);
}

.cn-feature-item i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  color: #ffffff;
  background: linear-gradient(135deg, var(--cn-teal), var(--cn-blue));
}

.cn-feature-item:nth-child(2) i {
  background: linear-gradient(135deg, var(--cn-blue), var(--cn-coral));
}

.cn-feature-item:nth-child(3) i {
  background: linear-gradient(135deg, var(--cn-orange), var(--cn-red));
}

.cn-color-showcase {
  position: absolute;
  z-index: 1;
  right: 34px;
  bottom: 34px;
  width: 260px;
  height: 260px;
  pointer-events: none;
}

.cn-shape {
  position: absolute;
  display: block;
  border-radius: 999px;
  filter: saturate(1.05);
}

.cn-shape-one {
  width: 130px;
  height: 130px;
  right: 18px;
  bottom: 20px;
  background: linear-gradient(135deg, rgba(19, 191, 166, 0.72), rgba(37, 89, 214, 0.76));
  box-shadow: 0 24px 60px rgba(37, 89, 214, 0.2);
  animation: cnPulseSoft 5s ease-in-out infinite;
}

.cn-shape-two {
  width: 92px;
  height: 92px;
  right: 130px;
  bottom: 94px;
  background: linear-gradient(135deg, rgba(255, 159, 28, 0.84), rgba(255, 86, 109, 0.76));
  box-shadow: 0 24px 60px rgba(255, 86, 109, 0.18);
  animation: cnFloatMini 4.6s ease-in-out infinite;
}

.cn-shape-three {
  width: 48px;
  height: 48px;
  right: 42px;
  bottom: 172px;
  background: var(--cn-red);
  box-shadow: 0 16px 32px rgba(228, 61, 84, 0.18);
  animation: cnFloatMini 5.2s ease-in-out infinite reverse;
}

.cn-shape-four {
  width: 34px;
  height: 34px;
  right: 190px;
  bottom: 36px;
  background: var(--cn-teal);
  box-shadow: 0 16px 32px rgba(19, 191, 166, 0.18);
}

.cn-shape-five {
  width: 22px;
  height: 22px;
  right: 10px;
  bottom: 150px;
  background: var(--cn-orange);
  box-shadow: 0 16px 32px rgba(255, 159, 28, 0.18);
}

.cn-form-panel {
  display: flex;
  min-width: 0;
}

.cn-form-card {
  width: 100%;
  padding: clamp(24px, 3vw, 36px);
  color: var(--cn-text);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(248, 250, 252, 0.94));
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: var(--cn-shadow-lg);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  animation: cnFadeUp 0.7s 0.08s ease both;
}

.cn-mobile-logo {
  display: none;
  justify-content: center;
  margin-bottom: 20px;
}

.cn-form-head {
  margin-bottom: 26px;
}

.cn-eyebrow {
  display: inline-flex;
  max-width: 100%;
  width: fit-content;
  margin-bottom: 12px;
  padding: 7px 11px;
  overflow: hidden;
  color: #0d7667;
  font-size: 0.78rem;
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-radius: 999px;
  background: rgba(19, 191, 166, 0.12);
  border: 1px solid rgba(19, 191, 166, 0.18);
}

.cn-form-head h2 {
  margin: 0;
  color: var(--cn-navy);
  font-size: clamp(2rem, 3vw, 2.75rem);
  line-height: 1;
  letter-spacing: -0.06em;
}

.cn-form-head p {
  margin: 12px 0 0;
  color: var(--cn-muted);
  font-size: 0.98rem;
  line-height: 1.65;
}

.cn-alert {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 18px;
  padding: 14px;
  border-radius: 18px;
  font-size: 0.92rem;
  line-height: 1.5;
}

.cn-alert i {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 34px;
  height: 34px;
  border-radius: 12px;
  font-size: 1.15rem;
}

.cn-alert ul {
  margin: 0;
  padding-left: 18px;
}

.cn-alert p {
  margin: 5px 0 0;
}

.cn-alert-error {
  color: #991b1b;
  background: var(--cn-danger-bg);
  border: 1px solid rgba(239, 68, 68, 0.18);
}

.cn-alert-error i {
  color: #ffffff;
  background: var(--cn-danger);
}

.cn-alert-success {
  color: #065f46;
  background: var(--cn-success-bg);
  border: 1px solid rgba(16, 185, 129, 0.2);
}

.cn-alert-success i {
  color: #ffffff;
  background: var(--cn-success);
}

.cn-form {
  display: grid;
  gap: 17px;
}

.cn-field {
  display: grid;
  gap: 8px;
}

.cn-field label {
  color: var(--cn-navy);
  font-size: 0.9rem;
  font-weight: 850;
}

.cn-input-box {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 58px;
  overflow: hidden;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.055);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.cn-input-box::before {
  content: "";
  position: absolute;
  inset: -2px;
  z-index: 0;
  opacity: 0;
  background:
    linear-gradient(
      120deg,
      var(--cn-teal),
      var(--cn-blue),
      var(--cn-orange),
      var(--cn-coral),
      var(--cn-red),
      var(--cn-teal)
    );
  background-size: 300% 300%;
  transition: opacity 0.25s ease;
}

.cn-input-box::after {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: 1;
  border-radius: 17px;
  background: #ffffff;
}

.cn-input-box:focus-within {
  border-color: transparent;
  transform: translateY(-1px);
  box-shadow:
    0 0 0 4px rgba(37, 89, 214, 0.08),
    0 16px 34px rgba(16, 32, 51, 0.1);
}

.cn-input-box:focus-within::before {
  opacity: 1;
  animation: cnFocusGlow 4s linear infinite;
}

.cn-input-box i,
.cn-input-box input {
  position: relative;
  z-index: 2;
}

.cn-input-box i {
  display: grid;
  place-items: center;
  width: 52px;
  color: var(--cn-teal);
  font-size: 1.18rem;
  transition: color 0.25s ease;
}

.cn-input-box:focus-within i {
  animation: cnFocusIcon 4s linear infinite;
}

.cn-input-box input {
  width: 100%;
  min-width: 0;
  height: 56px;
  padding: 0 16px 0 0;
  color: var(--cn-text);
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 650;
}

.cn-input-box input::placeholder {
  color: #9aa8b8;
  font-weight: 500;
}

.cn-recaptcha-box {
  overflow-x: auto;
  padding: 12px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid rgba(16, 32, 51, 0.1);
  box-shadow: 0 10px 24px rgba(16, 32, 51, 0.055);
}

.cn-error-text {
  color: var(--cn-danger);
  font-size: 0.84rem;
  font-weight: 750;
}

.cn-submit-btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 58px;
  width: 100%;
  margin-top: 4px;
  overflow: hidden;
  color: #ffffff;
  font-weight: 950;
  letter-spacing: -0.01em;
  border-radius: 18px;
  background:
    linear-gradient(135deg, var(--cn-teal), var(--cn-blue) 48%, var(--cn-coral));
  box-shadow:
    0 18px 36px rgba(37, 89, 214, 0.26),
    0 8px 20px rgba(19, 191, 166, 0.16);
  transition: var(--cn-transition);
}

.cn-submit-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.16), transparent 35%, rgba(255, 255, 255, 0.18));
  opacity: 0;
  transition: var(--cn-transition);
}

.cn-submit-btn span,
.cn-submit-btn i {
  position: relative;
  z-index: 1;
}

.cn-submit-btn i {
  font-size: 1.2rem;
}

.cn-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow:
    0 22px 44px rgba(37, 89, 214, 0.3),
    0 10px 24px rgba(255, 86, 109, 0.18);
}

.cn-submit-btn:hover::before {
  opacity: 1;
}

.cn-form-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  flex-wrap: wrap;
  padding-top: 8px;
}

.cn-form-links a {
  color: var(--cn-blue);
  font-size: 0.9rem;
  font-weight: 850;
  transition: var(--cn-transition);
}

.cn-form-links a:hover {
  color: var(--cn-coral);
}

.cn-form-links span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--cn-orange), var(--cn-coral));
}

.cn-banners {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.cn-banner-box {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 16px;
  overflow: hidden;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.78);
  box-shadow: var(--cn-shadow-sm);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.cn-banner-adaptive {
  max-width: 100%;
  overflow: hidden;
}

.cn-footer {
  position: relative;
  z-index: 1;
  padding: 0 0 24px;
}

.cn-footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  padding: 18px 2px 0;
  color: var(--cn-muted);
  font-size: 0.9rem;
}

.cn-footer-inner p {
  margin: 0;
}

.cn-footer-links {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.cn-footer-links a {
  color: var(--cn-muted);
  transition: var(--cn-transition);
}

.cn-footer-links a:hover {
  color: var(--cn-blue);
}

@keyframes cnFocusGlow {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

@keyframes cnFocusIcon {
  0% {
    color: var(--cn-teal);
  }

  25% {
    color: var(--cn-blue);
  }

  50% {
    color: var(--cn-orange);
  }

  75% {
    color: var(--cn-coral);
  }

  100% {
    color: var(--cn-teal);
  }
}

@keyframes cnFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }

  50% {
    transform: translate3d(18px, -18px, 0) scale(1.05);
  }
}

@keyframes cnFloatMini {
  0%,
  100% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(0, -10px, 0);
  }
}

@keyframes cnPulseSoft {
  0%,
  100% {
    transform: scale(1);
    opacity: 0.92;
  }

  50% {
    transform: scale(1.06);
    opacity: 1;
  }
}

@keyframes cnSlowSpin {
  to {
    transform: rotate(360deg);
  }
}

@keyframes cnFadeUp {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 1120px) {
  .cn-login-layout {
    grid-template-columns: 1fr;
  }

  .cn-welcome-panel,
  .cn-form-card {
    min-height: auto;
  }

  .cn-form-card {
    max-width: 720px;
    margin: 0 auto;
  }

  .cn-welcome-panel {
    min-height: 520px;
  }

  .cn-color-showcase {
    opacity: 0.65;
  }
}

@media (max-width: 900px) {
  .cn-header-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .cn-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .cn-logo-plate {
    width: min(280px, calc(100vw - 72px));
  }

  .cn-banners {
    grid-template-columns: 1fr;
  }

  .cn-footer-inner {
    justify-content: center;
    text-align: center;
  }

  .cn-footer-links {
    justify-content: center;
  }
}

@media (max-width: 620px) {
  .cn-container {
    width: min(calc(100% - 22px), var(--cn-container));
  }

  .cn-header {
    padding-top: 11px;
  }

  .cn-header-inner {
    padding: 10px 0;
  }

  .cn-brand {
    width: 100%;
    justify-content: center;
  }

  .cn-logo-plate {
    width: min(260px, 100%);
    height: 64px;
    border-radius: 20px;
  }

  .cn-logo-plate img {
    max-height: 40px;
  }

  .cn-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 6px 18px;
  }

  .cn-nav a {
    min-height: 38px;
    justify-content: center;
    font-size: 0.86rem;
  }

  .cn-login-layout {
    gap: 14px;
  }

  .cn-welcome-panel {
    min-height: auto;
    padding: 24px;
    border-radius: 28px;
  }

  .cn-welcome-content {
    text-align: center;
  }

  .cn-site-badge {
    margin-left: auto;
    margin-right: auto;
  }

  .cn-welcome-content h1 {
    font-size: clamp(2.5rem, 15vw, 4rem);
  }

  .cn-welcome-content p {
    font-size: 0.98rem;
  }

  .cn-color-showcase {
    display: none;
  }

  .cn-feature-list {
    margin-left: auto;
    margin-right: auto;
  }

  .cn-feature-item {
    width: 100%;
    justify-content: center;
  }

  .cn-mobile-logo {
    display: flex;
  }

  .cn-form-card {
    padding: 22px;
    border-radius: 28px;
  }

  .cn-form-head {
    text-align: center;
  }

  .cn-eyebrow {
    margin-left: auto;
    margin-right: auto;
  }

  .cn-form-links {
    flex-direction: column;
    gap: 8px;
  }

  .cn-form-links span {
    display: none;
  }

  .cn-banner-box {
    min-height: 82px;
    padding: 12px;
  }

  .g-recaptcha {
    transform: scale(0.86);
    transform-origin: 0 0;
  }
}

@media (max-width: 400px) {
  .cn-form-card,
  .cn-welcome-panel {
    padding: 18px;
  }

  .cn-logo-plate {
    height: 60px;
    padding: 10px 14px;
  }

  .cn-input-box {
    min-height: 54px;
  }

  .cn-input-box input {
    height: 52px;
  }

  .cn-submit-btn {
    min-height: 54px;
  }
}

.cn-secure-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  color: var(--cn-navy-2);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
  border-radius: 18px;
  background: rgba(19, 191, 166, 0.09);
  border: 1px solid rgba(19, 191, 166, 0.16);
}

.cn-secure-note i {
  flex: 0 0 auto;
  color: var(--cn-teal);
  font-size: 1.1rem;
  margin-top: 2px;
}

.cn-secure-note span {
  display: block;
}

@media (max-width: 620px) {
  .cn-secure-note {
    text-align: left;
  }
}

.cn-secure-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 13px 14px;
  color: var(--cn-navy-2);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.55;
  border-radius: 18px;
  background: rgba(19, 191, 166, 0.09);
  border: 1px solid rgba(19, 191, 166, 0.16);
}

.cn-secure-note i {
  flex: 0 0 auto;
  color: var(--cn-teal);
  font-size: 1.1rem;
  margin-top: 2px;
}

.cn-secure-note span {
  display: block;
}

@media (max-width: 620px) {
  .cn-secure-note {
    text-align: left;
  }
}