/* ===== Estilos base ===== */
body {
  font-family: Arial, sans-serif;
  margin: 0;
  background: #f5f6fa;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

/* ===== Contenedor principal ===== */
.container {
  width: 100%;
  max-width: 420px;
  background: #ffffff;
  padding: 30px 25px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  text-align: center;
}

/* ===== Título ===== */
h1 {
  color: #2193b0;
  margin-bottom: 10px;
}

p {
  color: #555;
  font-size: 14px;
  margin-bottom: 25px;
}

/* ===== Inputs ===== */
input[type="text"],
input[type="password"],
input[type="email"] {
  width: 90%;
  padding: 10px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  outline: none;
  transition: border-color 0.3s ease;
}

input:focus {
  border-color: #2193b0;
}

/* ===== Botón ===== */
button {
  background: #2193b0;
  color: #fff;
  border: none;
  padding: 10px 15px;
  border-radius: 6px;
  cursor: pointer;
  width: 95%;
  transition: background 0.3s ease;
  font-size: 16px;
}

button:hover {
  background: #17657a;
}

/* ===== Enlaces ===== */
a {
  display: inline-block;
  margin-top: 10px;
  text-decoration: none;
  color: #2193b0;
  font-weight: 600;
}

a:hover {
  text-decoration: underline;
}

/* ===== Mensajes ===== */
.msg {
  padding: 10px;
  border-radius: 6px;
  margin-bottom: 15px;
  font-size: 14px;
  text-align: center;
}

.msg.error {
  background: #ffe6e6;
  color: #c0392b;
  border: 1px solid #e74c3c;
}

.msg.success {
  background: #eafaf1;
  color: #2ecc71;
  border: 1px solid #2ecc71;
}
