body {
  margin: 0;
  padding: 40px 0; 
  background: linear-gradient(to right, #870108, #ff741d);
  font-family: 'Roboto', sans-serif;
  display: flex;
  justify-content: center;
  min-height: 100vh; 
  box-sizing: border-box;
}

.login-container {
  background-color: #fff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  width: 100%;
  max-width: 400px;
}


.login-container h2 {
  text-align: center;
  margin-bottom: 20px;
  color: #333;
  font-size: 24px;
}

.login-container input {
  width: 100%;
  padding: 12px;
  margin: 10px 0;
  border: 1px solid #656565;
  border-radius: 8px;
  box-sizing: border-box;
  font-size: 18px; 
}

.login-container button {
  width: 100%;
  padding: 12px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 8px;
  font-size: 18px;
  cursor: pointer;
}

.login-container button:hover {
  background-color: #0056b3;
}

.registro-texto {
  margin-top: 15px;
  color: #333;
  font-size: 15px;
}

.registro-texto a {
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.registro-texto a:hover {
  text-decoration: underline;
}

.form-group {
  text-align: left;
  margin-bottom: 15px;
}

.form-group label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

