@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

:root {
  --line-green: #06c755;
  --text-dark: #272727;
  --bg-light: #ffffff;
  --input-border: rgba(0, 0, 0, 0.2);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Inter", sans-serif;
}

a {
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  background: var(--line-green);
  font-size: 18px;
  font-weight: bold;
  color: white;
}

.login-btn {
  background: rgba(0, 0, 0, 0.2);
  color: white;
  border: none;
  padding: 6px 12px;
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s;
}

.login-btn:hover {
  background: rgba(0, 0, 0, 0.3);
}

footer {
  background: rgba(0, 0, 0, 0.1);
  padding: 10px;
  text-align: center;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
}

.footer-links a {
  color: var(--text-dark);
  text-decoration: none;
  margin: 0 10px;
  font-size: 14px;
}

.footer-links a:hover {
  color: #666;
}

/* Mobile Optimization */
@media (max-width: 600px) {
  header {
    font-size: 16px;
  }
}