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

body {
  font-family: 'Inter', sans-serif;
  background-color: #f0f4f8;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.wrapper {
  width: 100%;
  max-width: 400px;
  padding: 20px;
}

.card {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.08);
  padding: 30px;
  text-align: center;
}

.logo {
  max-width: 120px;
  margin-bottom: 20px;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.card h1 {
  font-size: 1.8rem;
  color: #00874d;
  margin-bottom: 10px;
}

.card p {
  font-size: 1rem;
  color: #555;
  margin-bottom: 20px;
}

form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 8px;
  font-size: 1rem;
}

form button {
  width: 100%;
  background-color: #00874d;
  color: white;
  padding: 12px;
  font-size: 1rem;
  font-weight: 600;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

form button:hover {
  background-color: #006f3d;
}

.follow-btn {
  display: inline-block;
  margin-top: 10px;
  background-color: #4564dc;
  color: white;
  text-decoration: none;
  padding: 12px 16px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 8px;
  transition: background-color 0.3s ease;
}

.follow-btn i {
  margin-right: 8px;
}

.follow-btn:hover {
  background-color: #c02e60;
}

#status {
  margin-top: 10px;
  font-size: 0.9rem;
  color: #00874d;
}

.logo {
  max-width: 150px;
  margin-bottom: 20px;
}

.terms {
  font-size: 10px;
  color: #777;
  margin-top: 15px;
}

.terms a {
  color: #d63384;
  text-decoration: underline;
  cursor: pointer;
}

.popup {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  justify-content: center;
  align-items: center;
  z-index: 999;
}

.popup-content {
  background: white;
  padding: 20px;
  border-radius: 12px;
  max-width: 500px;
  width: 90%;
  text-align: left;
  position: relative;
}

.popup-content h2 {
  margin-top: 0;
  margin-buttom: 5px;
  color: #d63384;
}

.popup-content button {
  background-color: #198754;
  color: white;
  padding: 10px 15px;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  margin-top: 15px;
}
