body {
  margin: 0;
  font-family: 'Inter', sans-serif;
  background: #f5f8fc;
  color: #0f2a46;
}

.login-container {
  display: flex;
  height: 100vh;
  overflow: hidden;
}

/* Columna izquierda */
.login-form {
  width: 50%;
  padding: 80px 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
}

.login-form .content {
  width: 100%;
  max-width: 400px;
}

.login-form h1 {
  font-size: 28px;
  margin-bottom: 10px;
}

.login-form .sub {
  font-size: 14px;
  color: #7a7a7a;
  margin-bottom: 30px;
}

.login-form input {
  width: 100%;
  padding: 12px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
}

.login-form button {
  width: 100%;
  padding: 12px;
  background-color: #0f2a46;
  color: white;
  font-weight: bold;
  border: none;
  border-radius: 8px;
  font-size: 15px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.login-form button:hover {
  background-color: #1c3e6c;
}

.recuperar {
  text-align: right;
  margin-top: -10px;
  margin-bottom: 20px;
}

.recuperar a {
  font-size: 13px;
  color: #1e90ff;
  text-decoration: none;
}

.registrarse {
  text-align: right;
  font-size: 13px;
  color: #888;
  margin-bottom: 40px;
}

.registrarse a {
  color: #1e90ff;
  font-weight: 600;
  text-decoration: none;
}

/* Columna derecha */
.login-container {
  display: flex;
  height: 100vh;
}

.login-form {
  flex: 1;
  padding: 4rem;
  background-color: white;
}

.login-image {
  flex: 1;
  background-color: #1c3e6c;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-image .logo {
  max-width: 250px;
  height: auto;
}
