body {
    margin: 0;
    font-family: "Inter", sans-serif;
    background-color: #0f172a;
    color: white;
}

/* Navbar */

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #1e293b;
    padding: 15px 40px;
}

.navbar a {
    color: white;
    text-decoration: none;
}

/* Hero */

.hero {
    text-align: center;
    padding: 80px 20px;
    white-space: nowrap;
}

.hero h2 {
    font-size: 40px;
}

/* Services */

.services {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 40px;
    flex-wrap: wrap;
}

.card {
    background: #1e293b;
    padding: 25px;
    border-radius: 10px;
    width: 275px;
    text-align: center;
}

.card a {
    display: inline-block;
    margin-top: 10px;
    color: #38bdf8;
    text-decoration: none;
}

/* Footer */

footer {
    text-align: center;
    padding: 20px;
    background: #020617;
}

button {
  width: 100%;
  max-width: 250px;
  margin: 10px auto;
  display: block;
  padding: 10px;
  border: none;
  border-radius: 6px;
  background: #4da3ff;
  color: white;
  cursor: pointer;
}

button:hover {
  background: #357acc;
}

input {
  width: 100%;
  max-width: 250px;
  padding: 10px;
  margin: 10px auto;
  display: block;
  border-radius: 6px;
  border: none;
  outline: none;
  box-sizing: border-box;
}

.password-container {
  position: relative;
  width: 100%;
  max-width: 250px;
  margin: 10px auto;
}

.password-container input {
  width: 100%;
  padding: 10px;
  padding-right: 40px;
  border-radius: 6px;
  border: none;
}

.toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  font-size: 18px;
  opacity: 0.7;
  transition: 0.2s;
  color: #000000;
}

.toggle:hover {
  opacity: 1;
  transform: translateY(-50%) scale(1.2);
}

.status-green {
  color: #22c55e;
}

.status-red {
  color: #ef4444;
}