:root {
  --theme-green: #0d6b5c;
  --theme-green-soft: #a8d5c2;
  --theme-cream: #f3efe4;
  --theme-orange: #ff6a2a;
  --theme-text: #1a2f2a;
  --theme-muted: #55746d;
  --white: #ffffff;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body.auth-page {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  min-height: 100vh;
  background: linear-gradient(160deg, var(--theme-cream), #dcefe7 55%, #b5dccd);
  color: var(--theme-text);
  position: relative;
  overflow-x: hidden;
}

.bg-orb {
  position: fixed;
  border-radius: 50%;
  z-index: 0;
}

.orb-one {
  width: 360px;
  height: 360px;
  top: -120px;
  right: -80px;
  background: radial-gradient(circle, rgba(255, 106, 42, 0.35), rgba(255, 106, 42, 0));
}

.orb-two {
  width: 420px;
  height: 420px;
  left: -120px;
  bottom: -180px;
  background: radial-gradient(circle, rgba(13, 107, 92, 0.35), rgba(13, 107, 92, 0));
}

.auth-shell {
  max-width: 1050px;
  margin: 0 auto;
  padding: 30px 18px 44px;
  position: relative;
  z-index: 2;
}

.brand-link {
  width: fit-content;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--theme-green);
  font-weight: 700;
  margin-bottom: 22px;
}

.brand-link img {
  width: 92px;
}

.register-card {
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.93);
  border: 1px solid rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 50px rgba(12, 69, 59, 0.16);
  padding: 34px;
}

.register-head {
  margin-bottom: 26px;
}

.eyebrow {
  display: inline-block;
  background: #e5f5ef;
  color: var(--theme-green);
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 10px;
}

.register-head h1 {
  font-size: 34px;
  margin-bottom: 8px;
}

.register-head p {
  color: var(--theme-muted);
}

.register-form {
  display: grid;
  gap: 16px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #2e534b;
  margin-bottom: 7px;
}

input,
select {
  width: 100%;
  border: 1px solid #c8ded5;
  border-radius: 12px;
  background: #f8fcfa;
  padding: 11px 13px;
  font-size: 15px;
  color: var(--theme-text);
  transition: 0.25s ease;
}

input:focus,
select:focus {
  outline: none;
  border-color: var(--theme-green);
  box-shadow: 0 0 0 4px rgba(13, 107, 92, 0.14);
}

input[type="file"] {
  padding: 9px;
}

.inline-fields {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 12px;
}

.radio-group {
  display: flex;
  align-items: center;
  gap: 22px;
  background: #f8fcfa;
  border: 1px solid #cfe3da;
  border-radius: 12px;
  padding: 10px 14px;
}

.radio-group label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-weight: 500;
  color: #355f56;
}

.radio-group input {
  width: 16px;
  height: 16px;
  accent-color: var(--theme-green);
}

.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--theme-muted);
  margin-top: 4px;
}

.checkbox input {
  width: auto;
  margin: 0;
  accent-color: var(--theme-green);
}

.checkbox a {
  color: var(--theme-green);
  text-decoration: none;
  font-weight: 600;
}

.action-row {
  margin-top: 4px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.member-link {
  text-decoration: none;
  color: var(--theme-green);
  font-weight: 700;
}

.action-row input {
    width: 150px;
    border: none;
    border-radius: 30px;
    padding: 13px 30px;
    background: linear-gradient(90deg, var(--theme-orange), #ff824f);
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(255, 106, 42, 0.3);
}

@media (max-width: 900px) {
  .register-card {
    padding: 24px;
  }
}

@media (max-width: 740px) {
  .form-grid,
  .inline-fields {
    grid-template-columns: 1fr;
  }

  .register-head h1 {
    font-size: 28px;
  }
}
