/* background */
.register-body {
  margin: 0;
  height: 100vh;
  background: linear-gradient(135deg, #ecfeff, #f8fafc);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Segoe UI", Arial, sans-serif;
}

/* container */
.register-container {
  width: 100%;
  display: flex;
  justify-content: center;
}

/* card */
.register-card {
  background-color: #ffffff;
  width: 380px;
  padding: 35px 32px;
  border-radius: 18px;
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* branding */
.brand-title {
  color: #0f766e;
  margin-bottom: 5px;
}

.tagline {
  font-size: 14px;
  color: #64748b;
  margin-bottom: 25px;
}

/* title */
.register-title {
  color: #0f172a;
  margin-bottom: 20px;
}

/* inputs & select */
.register-card input,
.register-card select {
  width: 100%;
  padding: 12px;
  margin-bottom: 14px;
  border-radius: 8px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
}

.register-card input:focus,
.register-card select:focus {
  outline: none;
  border-color: #14b8a6;
}

/* button */
.primary-btn {
  width: 100%;
  padding: 12px;
  background-color: #14b8a6;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 16px;
  font-weight: bold;
  cursor: pointer;
  transition: 0.3s ease;
}

.primary-btn:hover {
  background-color: #0f766e;
}

/* success message */
.success-msg {
  margin-top: 12px;
  color: #15803d;
  font-size: 14px;
}

/* back link */
.back-text {
  margin-top: 18px;
  font-size: 14px;
  color: #475569;
}

.back-text a {
  color: #14b8a6;
  font-weight: bold;
  text-decoration: none;
}

.back-text a:hover {
  text-decoration: underline;
}
