body {
  margin: 0;
  padding: 0;
  font-family: "Poppins", sans-serif;
  background-color: #000;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
}

/* Container */
.container {
  max-width: 600px;
  padding: 40px 20px;
  animation: fadeIn 1.5s ease-in-out;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Logo + Hero */
.main-logo {
  width: 80px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}

.hero-image {
  width: 90%;
  max-width: 500px;
  height: auto;
  display: block;
  margin: 0 auto 40px;
}

/* Headings */
h1 {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 10px;
}

p.subtitle {
  font-size: 1.15rem;
  color: #00b3b9;
  font-weight: 500;
  letter-spacing: 0.5px;
}

/* Form */
form {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}

input[type="text"],
input[type="email"] {
  width: 100%;
  max-width: 320px;
  padding: 14px 18px;
  border: 2px solid #009ca5;
  border-radius: 8px;
  background-color: #111;
  color: #fff;
  font-size: 1rem;
  outline: none;
  transition: 0.3s;
}

input[type="text"]:focus,
input[type="email"]:focus {
  box-shadow: 0 0 8px #009ca5;
}

.checkbox-container {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.95rem;
  color: #ccc;
  user-select: none;
}

input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: #009ca5;
  cursor: pointer;
}

/* Button */
button {
  background-color: #009ca5;
  color: #fff;
  border: none;
  padding: 14px 40px;
  border-radius: 8px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.3s;
}

button:hover {
  background-color: #00b3b9;
  box-shadow: 0 0 10px #009ca5;
}

/* Footer */
footer {
  margin-top: 40px;
  font-size: 0.85rem;
  color: #666;
  text-align: center;
  padding-bottom: 20px;
}

/* Responsive */

/* Smaller screens */
@media (max-width: 768px) {
  .main-logo {
    width: 28%;
    max-width: 110px;
    margin-bottom: 10px;
  }
}

/* Very small devices */
@media (max-width: 480px) {
  .main-logo {
    width: 35%;
    max-width: 90px;
    margin-bottom: 8px;
  }
}
