/* Fondo y fuente */
body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  margin: 0;
  padding: 0;
}

/* Caja tipo login */
.login-box {
  width: 450px;
  margin: 5% auto;
}

/* Logo del sistema */
.login-logo {
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  color: #000;
  margin-bottom: 20px;
}

/* Caja tarjeta tipo login */
.card {
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
}

/* Cuerpo de la tarjeta (login, home, etc.) */
.login-card-body {
  background-color: #fff;
  padding: 30px;
  border-radius: 10px;
}

/* Mensaje superior */
.login-box-msg {
  font-weight: 500;
  font-size: 1rem;
  text-align: center;
  margin-bottom: 20px;
}

/* Inputs y selects */
input[type="text"],
input[type="password"],
input[type="email"],
input[type="file"],
select {
  width: 100%;
  padding: 8px;
  border-radius: 4px;
  border: 1px solid #ccc;
}

.input-group-text {
  background-color: #f0f0f0;
}

/* Botones */
.btn-primary {
  background-color: #ffd700 !important;
  border: none !important;
  font-weight: bold;
  color: #000;
}

.btn-primary:hover {
  background-color: #cdae00 !important;
  color: #fff !important;
}

.btn-danger {
  background-color: #ffd700;
  border: none;
  color: white;
  font-weight: bold;
  margin-top: 15px;
}

.btn-danger:hover {
  background-color: #ffd700;
}

/* Estilo adaptado para formularios como registro de planchas */
.container-registro {
  width: 95%;
  max-width: 1200px;
  background-color: #ffffff;
  margin: 40px auto;
  padding: 30px;
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0,0,0,0.1);
}

/* Título de secciones largas */
.container-registro h2 {
  text-align: center;
  font-weight: bold;
  margin-bottom: 20px;
  color: #000;
}

/* Tablas dentro de formulario */
.container-registro table {
  width: 100%;
  border-collapse: collapse;
}

.container-registro th {
  background-color: #f5f5f5;
  text-align: center;
  padding: 10px;
  font-weight: bold;
}

.container-registro td {
  padding: 8px;
  vertical-align: top;
}

/* Botón de envío para formularios largos */
.btn-submit {
  display: block;
  width: 100%;
  margin-top: 20px;
  background-color: #ffd700;
  color: #000;
  font-weight: bold;
  border: none;
  padding: 10px;
  border-radius: 4px;
}

.btn-submit:hover {
  background-color: #000;
  color: #fff;
}
.submit-row{
  padding: 10px;
  
}
/* Leyendas dentro del formulario */
.legend {
  font-weight: bold;
  background-color: #ececec;
  padding: 10px;
  text-align: center;
  margin-bottom: 10px;
}
      .container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
  }
    table {
      width: 100%;
      border-collapse: collapse;
    }
    th {
      background-color: #f5f5f5;
      text-align: center;
      padding: 10px;
    }
    td {
      padding: 8px;
      vertical-align: top;
    }
    input[type="text"], input[type="email"] {
      width: 95%;
      padding: 5px;
    }
    .legend {
      font-weight: bold;
      text-align: center;
      padding: 10px;
      background-color: #ececec;
    }
/* Responsive */
@media (max-width: 768px) {
  .container-registro table,
  .container-registro tbody,
  .container-registro tr,
  .container-registro td {
    display: block;
    width: 100%;
  }

  .container-registro td {
    margin-bottom: 15px;
  }

  .login-box {
    width: 95%;
    margin: 20px auto;
  }
}