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

body {
  font-family: Arial, sans-serif;
  background-color: #000;
  color: #fff;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
}

.logo {
  margin-top: 2rem;
  max-width: 200px;
}

.container {
  background-color: rgba(0, 0, 0, 0.7);
  padding: 2rem;
  border-radius: 10px;
  max-width: 400px;
  width: 100%;
  box-sizing: border-box;
}

h1 {
  font-size: 1.8rem;
  margin-bottom: 1rem;
  font-weight: 600;
  color: #2a66a3;
}

p {
  font-size: 1rem;
  margin-bottom: 2rem;
  color: #fff;
}

input[type="email"] {
  width: 100%;
  padding: 1rem;
  border-radius: 5px;
  border: none;
  margin-bottom: 1rem;
  font-size: 1rem;
  box-sizing: border-box;
  background-color: #333;
  color: #fff;
}

button {
  width: 100%;
  padding: 1rem;
  background-color: #77dfb0;
  color: white;
  border: none;
  border-radius: 5px;
  font-size: 1.1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s;
  box-sizing: border-box;
}

button:hover {
  background-color: #37b37b;
}

small {
  display: block;
  margin-top: 1rem;
  font-size: 0.9rem;
  color: #bbb;
}

.terms {
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: #bbb;
}

.terms a {
  color: #fff;
  text-decoration: none;
  margin: 0 0.5rem;
}

.terms a:hover {
  text-decoration: underline;
}

/* Success and Error messages */
.message {
  margin-bottom: 10px;
  font-size: 1rem;
  padding: 10px;
  border-radius: 5px;
}

.message.success {
  background-color: #4caf50;
  color: white;
}

.message.error {
  background-color: #f44336;
  color: white;
}

@media (max-width: 600px) {
  .container {
    padding: 1rem;
    margin: 0 15px;
  }

  h1 {
    font-size: 1.5rem;
  }

  p {
    font-size: 0.9rem;
  }

  button {
    font-size: 1rem;
    padding: 1rem;
  }

  input[type="email"] {
    font-size: 1rem;
    padding: 1rem;
  }

  small {
    font-size: 0.8rem;
  }

  .terms {
    font-size: 0.7rem;
  }
}
