* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Century Gothic', 'Segoe UI', sans-serif;
}

body {
  background: linear-gradient(135deg, #691c32, #ffffff);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Contenedor principal en dos columnas */
.main-container {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 70px; /* espacio por la navbar fija */
}

/* Columna izquierda: formulario */
.login-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.login-card {
  background: #e8e8e8;
  padding: 3rem;
  border-radius: 20px;
  box-shadow: 0 10px 30px #fb000033;
  text-align: center;
  width: 100%;
  max-width: 450px;
}

.login-card h2 {
  color: #000000;
  margin-bottom: 2rem;
  font-size: 28px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

input[type="text"],
input[type="password"] {
  padding: 16px;
  border: 2px solid #414141;
  border-radius: 100px;
  font-size: 16px;
}

.btn-primary {
  background: #691c32;
  color: #fff;
  border: none;
  padding: 16px;
  border-radius: 25px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
}

.btn-primary:hover {
  background: #bc955c;
}

/* Columna derecha: imagen */
.image-wrapper {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.image-wrapper img {
  max-width: 50%;
  height: auto;
}

/* Ajuste para íconos del footer oficial gob.mx */
footer i,
footer a {
  color: #ffffff !important;
  font-size: 22px;
  transition: color 0.3s;
}

footer i:hover,
footer a:hover {
  color: #bc955c !important;
}