body {
  background: linear-gradient(to right, #070a1b, #101636);
  font-family: 'Segoe UI', sans-serif;
  margin: 0;
  padding: 0;
  color: #ffffff;
}

.cadastro-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 90vh;
}

.cadastro-box {
  background-color: #0e132d;
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0, 255, 255, 0.15);
  width: 100%;
  max-width: 400px;
  text-align: center;
}

.cadastro-box h1 {
  margin-bottom: 25px;
  color: #00ffe0;
  font-size: 1.8rem;
}

.cadastro-box form {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.cadastro-box input {
  padding: 12px;
  border-radius: 8px;
  border: none;
  font-size: 1rem;
  background-color: #1a203d;
  color: #ffffff;
  outline: none;
}

.cadastro-box input::placeholder {
  color: #aaa;
}

.cadastro-box button {
  background: linear-gradient(135deg, #00ffe0, #0075ff);
  color: white;
  border: none;
  border-radius: 8px;
  padding: 12px;
  font-weight: bold;
  font-size: 1rem;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cadastro-box button:hover {
  transform: scale(1.03);
  box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.link {
  margin-top: 15px;
  font-size: 0.9rem;
}

.link a {
  color: #00ffe0;
  text-decoration: none;
}

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