/* Layout */
.login-wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Card */
.login-card {
  width: 100%;
  max-width: 380px;
  /* slightly smaller */
  background: rgba(17, 20, 26, 0.78);
  /* transparency */
  backdrop-filter: blur(8px);
  /* modern glass effect */
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 12px;
  padding: 26px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.65);
}

/* Header */
.login-header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.login-logo {
  height: 36px;
  background: #fff;
  border-radius: 7px;
  padding: 3px;
}

.login-title {
  font-weight: 600;
  font-size: 18px;
}

.login-subtitle {
  font-size: 13px;
  color: #9ca3af;
}

/* CTA */
.cta-box {
  text-align: center;
}

.cta-title {
  font-weight: 600;
  margin-bottom: 6px;
}

.cta-text {
  font-size: 13px;
  color: #cbd5e1;
  margin-bottom: 10px;
}

/* Footer */
.login-footer {
  margin-top: 20px;
  font-size: 12px;
  color: #ddd;
}

/* Fullscreen background */
body {
  background:
    linear-gradient(rgba(10, 12, 18, 0.55),
      rgba(10, 12, 18, 0.55)),
    url("background.png") center center / cover no-repeat fixed;
}

@media (max-height: 700px) {
  .login-wrapper {
    justify-content: flex-start;
    padding-top: 40px;
  }
}

.form-control {
  background-color: rgba(15, 18, 25, 0.85) !important;
}

/* Partner mention */
.login-partner {
  margin-top: 16px;
  padding-top: 12px;
  border-top: 1px dashed rgba(255, 255, 255, 0.08);
  text-align: center;
  font-size: 11px;
  color: #9ca3af;
}

.login-partner span {
  margin-right: 4px;
}

.partner-link {
  color: #93c5fd;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.partner-link:hover {
  text-decoration: underline;
}

.partner-link img {
  height: 16px;
  opacity: 0.85;
}

/* Make header clickable */
.nexon-link {
  text-decoration: none;
  color: inherit; /* Keep original text colors */
  display: flex;
  align-items: center;
}
.nexon-link:hover {
  text-decoration: none;
  opacity: 0.85; /* subtle hover effect */
}
