/* Container */
.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 24px;
}

/* Login layout */
.login-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  position: relative;
  overflow: hidden;
}
.login-wrap::before {
  content: "";
  position: fixed;
  inset: -20% -20% -20% 30%;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, .09), transparent 55%),
    linear-gradient(115deg, transparent 0 25%, rgba(255, 255, 255, .06) 25% 50%, transparent 50%);
}

.login-box {
  position: relative;
  z-index: 1;
  background: rgba(24, 76, 143, .85);
  border: 1px solid rgba(255, 255, 255, .18);
  border-radius: 12px;
  padding: 48px 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: 0 20px 60px rgba(0, 20, 60, .4);
}
.login-box h1 { font-size: 1.4rem; color: #fff; margin-bottom: 6px; }
.login-box p { font-size: .85rem; color: rgba(255, 255, 255, .7); margin-bottom: 28px; }
.login-box .form-group label { color: rgba(255, 255, 255, .7); }
.login-box .input {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .2);
  color: #fff;
}
.login-box .input::placeholder { color: rgba(255, 255, 255, .4); }
.login-box .input:focus {
  border-color: var(--accent2);
  box-shadow: 0 0 0 2px rgba(72, 181, 255, .2);
}
.login-box .btn-primary {
  width: 100%;
  background: #fff;
  color: var(--app-blue);
  font-weight: 700;
  box-shadow: 0 4px 16px rgba(0, 0, 0, .15);
}
.login-box .btn-primary:hover { background: #f0f4f8; opacity: 1; }

/* Header */
.header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  background: var(--app-blue);
  color: #fff;
}
.header h1 { font-size: 1.1rem; font-weight: 700; }
