*, *::before, *::after { box-sizing: border-box; }
body {
  margin: 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  background: #0c1a2e;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
.auth-wrapper {
  width: 100%;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: linear-gradient(135deg, #0c1a2e 0%, #162d50 100%);
}
.auth-register-page {
  width: 100%;
  max-width: 440px;
  background: #ffffff;
  border-radius: 20px;
  box-shadow: 0 24px 80px rgba(0,0,0,0.3);
  padding: 40px 36px;
  position: relative;
}
.auth-register-title {
  font-size: 1.6rem;
  font-weight: 800;
  color: #0c1a2e;
  margin: 0 0 4px 0;
  text-align: center;
}
.auth-register-sub {
  font-size: 0.95rem;
  color: #64748b;
  text-align: center;
  margin: 0 0 24px 0;
}
.auth-register-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.auth-label {
  font-size: 0.85rem;
  font-weight: 600;
  color: #1e293b;
  margin-bottom: 2px;
  display: block;
}
.auth-input {
  width: 100%;
  padding: 11px 14px;
  border-radius: 10px;
  border: 1.5px solid #e2e8f0;
  font-size: 0.95rem;
  color: #1e293b;
  background: #f8fafc;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  outline: none;
}
.auth-input:focus {
  border-color: #c9a84c;
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: #fff;
}
.auth-btn {
  width: 100%;
  padding: 13px;
  border-radius: 12px;
  border: none;
  background: #0c1a2e;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
  letter-spacing: 0.3px;
}
.auth-btn:hover { background: #162d50; }
.auth-btn:active { transform: scale(0.98); }
.auth-register-footer {
  text-align: center;
  color: #64748b;
  font-size: 0.9rem;
  margin-top: 20px;
}
.auth-register-footer a {
  color: #c9a84c;
  font-weight: 600;
  text-decoration: none;
}
.auth-register-footer a:hover { text-decoration: underline; }
.auth-security-msg {
  text-align: center;
  font-size: 0.8rem;
  color: #94a3b8;
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.home-link {
  position: absolute;
  top: 16px;
  left: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  color: #c9a84c;
  font-size: 0.85rem;
  font-weight: 600;
  text-decoration: none;
  transition: opacity 0.2s;
}
.home-link:hover { opacity: 0.8; }
.home-link svg { fill: #c9a84c; }

@media (max-width: 480px) {
  .auth-wrapper { padding: 12px; }
  .auth-register-page { padding: 28px 20px; }
}
