* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.titulo {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #2C4DFF;
}
body {
  background: linear-gradient(180deg, #010135 0%, #2C4DFF 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
  padding: 20px;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(44, 77, 255, 0.5);
  width: 100%;
  max-width: 800px;
  backdrop-filter: blur(8px);
}

h1 {
  text-align: center;
  margin-bottom: 30px;
  font-size: 28px;
  color: #ffffff;
}

.grid-form {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.grid-form > div {
  display: flex;
  flex-direction: column;
}

.grid-form span {
  font-weight: bold;
  color: #cdd9e5;
  margin-bottom: 4px;
}

.grid-form input {
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #1f3b5f;
  color: #fff;
  font-size: 16px;
  width: 100%;
  transition: box-shadow 0.3s ease;
}


.full-width {
  grid-column: span 3;
  text-align: center;
}

.full-width input,
.full-width button {
  width: 100%;
  padding: 12px;
  border-radius: 8px;
  font-size: 16px;
  border: none;
}

.full-width button {
  background-color: #2C4DFF;
  color: white;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.2s ease;
}

.full-width button:hover {
  background-color: #1a35cc;
  transform: scale(1.02);
}

/* Responsive para mobile */
@media (max-width: 768px) {
  .grid-form {
    grid-template-columns: 1fr;
  }

  .full-width {
    grid-column: span 1;
  }
}
.full-width select {
  padding: 12px;
  border-radius: 8px;
  border: none;
  background-color: #1f3b5f;
  color: #fff;
  font-size: 16px;
  width: 100%;
}

.full-width label {
  font-weight: bold;
  color: #cdd9e5;
  margin-bottom: 6px;
  display: block;
}
.login-link {
  place-items: center;
  margin-top: 20px;
  font-size: 16px;
  color: #cdd9e5;
}

.login-link a {
  color: #00aaff;
  font-weight: bold;
  text-decoration: none;  
  transition: color 0.3s ease, text-shadow 0.3s ease;
}

.login-link a:hover {
  color: #2C4DFF;
  text-shadow: 0 0 6px #2C4DFF;
}