.register-wrap {
  width: 420px;
  text-align: center;
  color: #fff;
}

.register-wrap h1 {
  font-size: 44px;
  font-weight: 500;
  margin-bottom: 18px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

.auth-form input {
  width: 100%;
  height: 36px;
  padding: 10px 12px;
  border-radius: 3px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(10, 34, 56, 0.55);
  color: #e9f3ff;
  outline: none;
  font-size: 12px;
}

.auth-form input::placeholder {
  color: rgba(233, 243, 255, 0.55);
}

.auth-form input:focus {
  border-color: rgba(159, 211, 255, 0.6);
  box-shadow: 0 0 0 3px rgba(159, 211, 255, 0.12);
}

.register-btn {
  height: 32px;
  border: none;
  border-radius: 3px;
  background: #9fd3ff;  /* BLUE */
  color: #0a2540;
  cursor: pointer;
  font-weight: 800;
  font-size: 10px;
  letter-spacing: 0.6px;
}

.register-btn:hover {
  background: #b6e1ff;
}

/* Modal */
.modal {
  position: fixed;
  inset: 0;
  background: rgba(5, 12, 20, 0.7);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.modal.open {
  display: flex;
}

.modal-card {
  width: 100%;
  max-width: 420px;
  background: #0f2c47;
  border-radius: 12px;
  padding: 22px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  color: #fff;
  text-align: left;
}

.modal-card h2 {
  font-size: 18px;
  margin-bottom: 12px;
  font-weight: 600;
}

.modal-text {
  font-size: 13px;
  opacity: 0.85;
  margin-bottom: 16px;
}

.modal-actions {
  display: flex;
  justify-content: flex-end;
}

.primary-btn {
  background: #9fd3ff;
  color: #0a2540;
  border: none;
  border-radius: 4px;
  padding: 8px 12px;
  font-size: 11px;
  font-weight: 700;
  cursor: pointer;
}

.primary-btn:hover {
  background: #b6e1ff;
}
