: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%;
  filter: blur(2px);
  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: 1020px;
  margin: 0 auto;
  padding: 30px 18px 40px;
  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: 24px;
}

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

.auth-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: rgba(255, 255, 255, 0.92);
  border-radius: 24px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  box-shadow: 0 20px 50px rgba(12, 69, 59, 0.16);
  overflow: hidden;
}

.auth-visual {
  padding: 48px 40px;
  background: linear-gradient(145deg, #0c6859, #19a27d);
  color: #fff;
}

.eyebrow {
  display: inline-block;
  background: rgba(255, 255, 255, 0.16);
  color: #f8fff8;
  border-radius: 50px;
  padding: 6px 12px;
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 14px;
}

.auth-visual h1 {
  font-size: 32px;
  line-height: 1.2;
  margin-bottom: 14px;
}

.visual-copy {
  color: rgba(255, 255, 255, 0.86);
  margin-bottom: 20px;
  line-height: 1.6;
}

.auth-visual ul {
  list-style: none;
}

.auth-visual li {
  margin-bottom: 12px;
  position: relative;
  padding-left: 24px;
}

.auth-visual li::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--theme-orange);
  position: absolute;
  left: 0;
  top: 6px;
}

.auth-form-wrap {
  padding: 44px 40px;
}

.auth-form-wrap h2 {
  font-size: 30px;
  color: var(--theme-text);
  margin-bottom: 8px;
}

.sub-copy {
  color: var(--theme-muted);
  margin-bottom: 24px;
}

.auth-form {
  display: grid;
  gap: 12px;
}

.auth-form label {
  font-size: 14px;
  font-weight: 600;
  color: #2e534b;
}

.auth-form input {
  width: 100%;
  border: 1px solid #c8ded5;
  border-radius: 12px;
  background: #f8fcfa;
  padding: 12px 14px;

  font-size: 15px;
  color: var(--theme-text);
  transition: 0.25s ease;
}

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

    .auth-form #login_btn {
        margin-top: 6px;
        width: 100%;
        border: none;
        border-radius: 30px;
        padding: 13px;
        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;
    }

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

.switch-link {
  margin-top: 18px;
  color: var(--theme-muted);
}

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

.switch-link a:hover {
  color: var(--theme-orange);
}

@media (max-width: 900px) {
  .auth-card {
    grid-template-columns: 1fr;
  }

  .auth-visual {
    padding: 32px 24px;
  }

  .auth-form-wrap {
    padding: 30px 24px 34px;
  }
}

@media (max-width: 520px) {
  .brand-link span {
    font-size: 14px;
  }

  .auth-form-wrap h2 {
    font-size: 24px;
  }

  .auth-visual h1 {
    font-size: 24px;
  }
}
