/* Reset básico */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Arial', sans-serif;
  background: linear-gradient(135deg, #1d2671, #c33764);
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
  padding: 20px;
  color: #fff;
}

.form-container {
  width: 100%;
  max-width: 500px;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(15px);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  transition: transform 0.3s ease;
}

.form-container:hover {
  transform: translateY(-5px);
}

h2 {
  text-align: center;
  margin-bottom: 25px;
  color: #d7ff00;
  font-size: 24px;
}

label {
  display: block;
  margin-top: 15px;
  font-weight: bold;
  color: #fff;
}

input {
  width: 100%;
  padding: 12px;
  margin-top: 5px;
  border-radius: 10px;
  border: none;
  font-size: 14px;
  transition: 0.3s;
}

input:focus {
  outline: none;
  box-shadow: 0 0 5px #d7ff00;
  background: rgba(255,255,255,0.1);
  color: #fff;
}

button {
  margin-top: 25px;
  width: 100%;
  padding: 14px;
  background-color: #d7ff00;
  border: none;
  font-weight: bold;
  font-size: 16px;
  border-radius: 10px;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s;
}

button:hover {
  background-color: #b5e600;
  transform: scale(1.05);
}

/* Responsividade */
@media (max-width: 600px) {
  .form-container {
    padding: 20px;
  }

  input, button {
    font-size: 15px;
  }
}

/* Responsividade extra para telas muito grandes */
@media (min-width: 1200px) {
  .form-container {
    padding: 40px;
    max-width: 600px;
  }

  button {
    font-size: 18px;
  }
}