/*==========ACCOUNT CREATION CSS - Allkryptostrategies (dark/gold theme)===================*/

body {
  background: #000;
  font-family: "Manrope", 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

.register-container {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 30px 15px;
}

.register-card {
  background: rgba(24, 24, 27, 0.6);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(202,138,4, 0.2);
  border-radius: 16px;
  box-shadow: 0 20px 25px -5px rgba(0,0,0,0.4);
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}

.register-card.wide {
  max-width: 620px;
}

.register-right {
  padding: 45px 40px;
  color: #fff;
}

.register-right h3 {
  font-family: "Poppins", sans-serif;
  font-weight: 600;
  margin-bottom: 6px;
  color: #CA8A04;
  text-align: center;
}

.register-right .text-muted {
  color: #9ca3af !important;
  text-align: center;
}

.form-control, .form-select {
  background: rgba(255,255,255,0.05);
  color: #fff;
  border-radius: 6px;
  outline: 0 !important;
  border: 1px solid rgba(202,138,4,0.25);
  padding: 10px 14px;
}

.form-control::placeholder {
  color: #6b7280;
}

.form-control:focus, .form-select:focus {
  outline: 0 !important;
  background: rgba(255,255,255,0.08);
  color: #fff;
  border-color: #CA8A04;
  box-shadow: 0 0 0 3px rgba(202,138,4,0.15) !important;
}

.form-select option {
  background: #111;
  color: #fff;
}

/* Password field with show/hide toggle */
.password-field {
  position: relative;
}

.password-field .form-control {
  padding-right: 42px;
}

.password-field .toggle-password {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: #9ca3af;
  cursor: pointer;
  padding: 8px;
  line-height: 1;
}

.password-field .toggle-password:hover {
  color: #CA8A04;
}

.btn-primary {
  width: 100%;
  border-radius: 999px;
  padding: 12px;
  font-size: 16px;
  font-weight: 700;
  background: #CA8A04;
  color: #fff;
  border: none;
  transition: background .25s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #A16207;
  color: #fff;
}

.login-link, .signup-link {
  margin-top: 14px;
  text-align: center;
  color: #9ca3af;
}

.login-link a, .signup-link a, .options a {
  color: #CA8A04;
  text-decoration: none;
  font-weight: 600;
}

.login-link a:hover, .signup-link a:hover, .options a:hover {
  text-decoration: underline;
}

.alert-success {
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.4);
  color: #86efac;
}

.alert-danger {
  background: rgba(239,68,68,0.15);
  border: 1px solid rgba(239,68,68,0.4);
  color: #fca5a5;
}
