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

html, body {
  height: 100%;
  font-family: 'Segoe UI', system-ui, sans-serif;
  background: #f4f3f8;
}

/* Page wrapper */
.la-page {
  display: flex;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

/* Navy left background (diagonal) */
.la-bg-navy {
  position: absolute;
  inset: 0;
  background: #203d7c;
  clip-path: polygon(0 0, 62% 0, 72% 100%, 0 100%);
  z-index: 0;
}

/* Left content (logo + globe) */
.la-left {
  position: relative;
  z-index: 1;
  width: 55%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  overflow: hidden;
}


.la-left-globe {
  width: 82%;
  max-width: 380px;
  height: 58vh;
  object-fit: cover;
  object-position: center 42%;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
}

.la-left-tagline {
  margin-top: 1.25rem;
  color: #898ec2;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  text-align: center;
}

/* Right content (logo + form card) */
.la-right {
  position: relative;
  z-index: 1;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

.la-right-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 340px;
  gap: 1.5rem;
}

.la-right-logo {
  height: 52px;
  width: auto;
}

/* Card */
.la-card {
  background: #fff;
  border-radius: 14px;
  box-shadow: 0 10px 48px rgba(32, 61, 124, 0.16);
  padding: 2.5rem 2.25rem;
  width: 100%;
  max-width: 340px;
}

.la-card-label {
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #898ec2;
  margin-bottom: 0.5rem;
}

.la-card-divider {
  border: none;
  border-top: 1px solid #e8e7f0;
  margin-bottom: 1.75rem;
}

.la-card-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: #203d7c;
  margin-bottom: 0.3rem;
  letter-spacing: -0.01em;
}

.la-card-subtitle {
  font-size: 0.79rem;
  color: #898ec2;
  margin-bottom: 1.75rem;
}

/* Alert */
.la-alert {
  background: #fff3cd;
  border: 1px solid #f0d080;
  border-radius: 7px;
  padding: 0.6rem 0.85rem;
  font-size: 0.8rem;
  color: #203d7c;
  margin-bottom: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0.5rem;
}

.la-alert-close {
  background: none;
  border: none;
  font-size: 1rem;
  cursor: pointer;
  color: #898ec2;
  line-height: 1;
  flex-shrink: 0;
}

/* Fields */
.la-field {
  margin-bottom: 1rem;
}

.la-field label {
  display: block;
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #203d7c;
  margin-bottom: 0.4rem;
}

.la-field input {
  width: 100%;
  padding: 0.68rem 0.9rem;
  border: 1.5px solid #dddceb;
  border-radius: 7px;
  font-size: 0.88rem;
  color: #203d7c;
  background: #fafafe;
  outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  font-family: inherit;
}

.la-field input:focus {
  border-color: #203d7c;
  box-shadow: 0 0 0 3px rgba(32, 61, 124, 0.1);
  background: #fff;
}

.la-field input::placeholder { color: #b4b2cc; }

/* Button */
.la-btn {
  display: block;
  width: 100%;
  padding: 0.78rem;
  margin-top: 1.5rem;
  background: #203d7c;
  color: #fff;
  border: none;
  border-radius: 7px;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-family: inherit;
  transition: background 0.2s;
}

.la-btn:hover { background: #002f87; }
.la-btn:active { transform: scale(0.99); }

/* Responsive */
@media (max-width: 768px) {
  .la-left { display: none; }
  .la-bg-navy { display: none; }
  .la-right { width: 100%; }
}
