.exu-login {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: #1a1c1e;
}

.exu-login-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background-image: url('https://lh3.googleusercontent.com/aida-public/AB6AXuAHjG340aE1Yb2j6Rb4pnCEnEUyy0YSogoPrntvTSg44QjvVoFMcK5JIkFzGB3Kx6rV1elD8xJeysB94Wna7KSckSyFN8k9nxYD4OtMEWL7zcKEu0Pa5PGTjYh5ztz6JM4W74IlJioMWlqzapRAp9Ymtpw3moSzXXHLa-KjECEzM_RnlE6Dsr7iVLfUILoVYd4edqV_T1_yNoYb_SnMerucgisRzjHcdW-AwVZ4ok6bMR67yblmGR0EIT_gcMLlmKa0MV0OBwU6-Uc');
  background-size: cover;
  background-position: center;
}

.exu-login-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 32, 69, 0.18);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

.exu-login-main {
  width: 100%;
  max-width: 448px;
  animation: exuLoginFadeIn 0.5s ease-out forwards;
  opacity: 0;
  transform: translateY(20px);
}

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

.exu-login-card {
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 12px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 48px 32px;
  position: relative;
  overflow: hidden;
}

.exu-login-accent {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: #d4af37;
}

/* Header */
.exu-login-header {
  text-align: center;
  margin-bottom: 24px;
}

.exu-login-title {
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.3;
  color: #002045;
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}

.exu-login-subtitle {
  font-size: 16px;
  line-height: 1.5;
  color: #64748b;
  margin: 0;
}

/* Error */
.exu-login-error {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  background: #ffdad6;
  color: #93000a;
  font-size: 14px;
  border-radius: 8px;
  margin-bottom: 16px;
}

/* Form */
.exu-login-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.exu-login-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.exu-login-label {
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #1a1c1e;
}

.exu-login-input-wrap {
  position: relative;
  display: flex;
  align-items: center;
}

.exu-login-input-icon {
  position: absolute;
  left: 16px;
  pointer-events: none;
}

.exu-login-input {
  width: 100%;
  padding: 12px 16px 12px 44px;
  background: #fff;
  border: 1.5px solid #c4c6cf;
  border-radius: 8px;
  font-size: 16px;
  font-family: inherit;
  color: #1a1c1e;
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
}

.exu-login-input::placeholder {
  color: rgba(100, 116, 139, 0.6);
}

.exu-login-input:focus {
  outline: none;
  border-color: #002045;
  box-shadow: 0 0 0 1px #002045;
}

/* Row */
.exu-login-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 4px;
}

.exu-login-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
}

.exu-login-checkbox {
  width: 16px;
  height: 16px;
  border: 1.5px solid #c4c6cf;
  border-radius: 2px;
  accent-color: #002045;
  cursor: pointer;
}

.exu-login-check-text {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
}

.exu-login-link {
  font-size: 14px;
  font-weight: 500;
  color: #002045;
  text-decoration: none;
  transition: color 0.2s;
}

.exu-login-link:hover {
  color: #1a365d;
}

/* Submit */
.exu-login-submit {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 24px;
  margin-top: 8px;
  background: #002045;
  color: #fff;
  font-family: 'Inter', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: box-shadow 0.2s, transform 0.2s;
}

.exu-login-submit:hover {
  box-shadow: 0 4px 12px rgba(0, 32, 69, 0.3);
  transform: translateY(-1px);
}

.exu-login-submit:active {
  transform: scale(0.98);
}

.exu-login-submit svg {
  transition: transform 0.2s;
}

.exu-login-submit:hover svg {
  transform: translateX(2px);
}

/* Footer */
.exu-login-footer {
  text-align: center;
  margin-top: 24px;
}

.exu-login-footer p {
  font-size: 14px;
  font-weight: 500;
  color: #64748b;
  margin: 0;
}

.exu-login-footer-link {
  font-weight: 500;
  color: #d4af37;
  text-decoration: none;
  transition: color 0.2s;
}

.exu-login-footer-link:hover {
  color: #002045;
}

/* Responsive */
@media (max-width: 640px) {
  .exu-login-card {
    padding: 32px 20px;
  }

  .exu-login-title {
    font-size: 24px;
  }
}
