:root {
  --color-dark: #080E06;
  --color-dark-alt: #142A2B;
  --color-gray-text: #7F7F90;
  --color-white: #FFFFFF;
  --color-green: #78BB69;
  --color-teal: #68B9BA;
  --color-teal-light: #6DB9A0;
  --color-light-border: #DCDCDE;
  --color-bg-soft: #E8F0EF;
  --color-green-dark: #458F76;
  --color-green-darker: #3F7333;

  --font-heading: "Outfit", sans-serif;
  --font-text: "Inter", sans-serif;

  --max-width: 1280px;
}

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

body {
  font-family: var(--font-text);
  font-size: 16px;
  line-height: 1.4em;
  color: var(--color-dark);
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.2em;
  color: var(--color-dark);
}

h1 { font-size: 48px; letter-spacing: -1px; }
h2 { font-size: 39px; letter-spacing: -0.5px; }
h3 { font-size: 31px; }

a {
  text-decoration: none;
  color: var(--color-gray-text);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 20px;
}

.btn {
  display: inline-block;
  padding: 0.667em 1.333em;
  font-family: var(--font-text);
  font-size: 13px;
  font-weight: 500;
  text-transform: uppercase;
  color: var(--color-white);
  background-image: linear-gradient(135deg, var(--color-green) 0%, var(--color-teal) 100%);
  border-radius: 30px;
  border: none;
  cursor: pointer;
  transition: background-image 0.3s;
}

.btn:hover {
  background-image: linear-gradient(135deg, var(--color-teal) 0%, var(--color-green) 100%);
}

@media (max-width: 1024px) {
  h1 { font-size: 37px; }
  h2 { font-size: 31px; }
  body { font-size: 15px; }
}

@media (max-width: 767px) {
  h1 { font-size: 30px; }
  h2 { font-size: 24px; }
  body { font-size: 14px; }
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 45px;
}

.password-toggle {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  font-size: 18px;
  padding: 0;
}
