body {
  font-family: Arial, sans-serif;
  background:white;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
}

.contenedor-formulario {
  background: white;
  padding: 50px;
  border-radius: 12px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
  width: 100%;
  max-width: 400px;
}

h2 {
  text-align: center;
  color: #0d47a1;
}

.formulario .campo {
  margin-bottom: 15px;
}

label {
  display: block;
  margin-bottom: 5px;
  color: #333;
}

input[type="email"],
input[type="password"] {
  width: 100%;
  padding: 5px;
  border: 1px solid #ccc;
  border-radius: 6px;
}

.btn {
  justify-content: center;
  width: 413px;
  padding: 12px;
  background: #0d47a1;
  color: white;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  font-size: 16px;
}
.btn:hover {
  background: #1565c0;
}

.texto-registro {
  margin-top: 15px;
  text-align: center;
}

.texto-registro a {
  color: #0d47a1;
  text-decoration: none;
}

.texto-registro a:hover {
  text-decoration: underline;
}