/* ✅ Estilo general */
body {
  font-family: Arial, sans-serif;
  background-color: #f5f6fa;
  margin: 0;
  padding: 0;
}

/* ✅ Franja superior degradada */
header {
  background: linear-gradient(to right, #2ecc71, #3498db);
  color: white;
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header-text {
  font-size: 20px;
  font-weight: bold;
}

.logo-img {
  width: 60px;
  height: auto;
  border-radius: 10%;
}

/* ✅ Contenedor principal */
.login-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  margin: 40px auto;
  max-width: 1000px;
  gap: 30px;
  padding: 20px;
}

/* Imagen de empleada */
.image-section img {
  width: 100%;
  max-width: 230px;
  height: auto;
  border-radius: 10px;
  box-shadow: none;
}


/* Formulario 0 0 8px rgba(0, 0, 0, 0.2);*/
.form-section {
  flex: 1;
  min-width: 300px;
  max-width: 400px;
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.form-section h2 {
  text-align: center;
  color: #2c3e50;
  margin-bottom: 20px;
}

/* ✅ Inputs y Selects */
.form-section input[type="email"],
.form-section input[type="password"],
.form-section input[type="text"],
.form-section select {
  width: 100%;
  padding: 12px;
  margin-bottom: 15px;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  transition: border-color 0.3s;
}

.form-section input:focus,
.form-section select:focus {
  border-color: #3498db;
  outline: none;
}

/* ✅ Botón */
.form-section button {
  width: 100%;
  padding: 12px;
  background-color: #f39c12;
  color: white;
  border: none;
  border-radius: 6px;
  font-weight: bold;
  font-size: 15px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.form-section button:hover {
  background-color: #e67e22;
}

/* Enlace de registro / login */
.registro-text {
  text-align: center;
  margin-top: 15px;
  font-size: 14px;
}

.registro-text a {
  color: #2980b9;
  text-decoration: none;
}

.registro-text a:hover {
  text-decoration: underline;
}
/* ✅ Tarjeta blanca para imagen igual que formulario */
.image-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 300px;
  max-width: 400px;
  min-height: 325px;
  box-sizing: border-box;
}
