* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}

body {
  background: linear-gradient(180deg, #010135 0%, #2C4DFF 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  color: #fff;
}

.container {
  background-color: rgba(0, 0, 0, 0.6);
  padding: 40px;
  border-radius: 12px;
  box-shadow: 0 0 25px rgba(0, 0, 0, 0.5);
  width: 100%;
  max-width: 400px;      
  backdrop-filter: blur(8px);
}

.titulo {
  text-align: center;
  font-size: 32px;
  font-weight: bold;
  color: #ffffff;
  margin-bottom: 30px;
  text-shadow: 0 0 10px #2C4DFF;
}

.input-group {
  margin-bottom: 30px;
}

.input-group span {
  display: block;
  margin-bottom: 6px;
  font-weight: bold;
  color: #cdd9e5;
}

.input-group input {
  width: 100%;
  padding: 12px;
  border: none;
  border-radius: 8px;
  background-color: #1f3b5f;
  color: #fff;
  font-size: 16px;
  transition: box-shadow 0.3s ease;
}


button[type="submit"] {
  width: 100%;
  padding: 12px;
  margin-top: 20px;
  border: none;
  border-radius: 8px;
  background-color: #2C4DFF;
  color: white;
  font-size: 16px;
  cursor: pointer;
}

button[type="submit"]:hover {
  background-color: #1a35cc;
  transform: scale(1.02);
}


.login-link {
  text-align: 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;
}