@media screen and (max-width: 991px) {
  .section-authentication-signin {
    height: 100%; /* Altura al 100% para pantallas más pequeñas */
    margin-top: 4.5rem !important; /* Aumentar el margen superior para pantallas pequeñas */
    margin-bottom: 1.5rem !important;
  }
}
@media (min-width: 992px) {
  .my-lg-4 {
    margin-top: 3rem !important;
    margin-bottom: 1.5rem !important;
  }
}
.card.no-bg-no-border {
  background-color: transparent;
  border: none;
  box-shadow: none; /* Eliminar sombra */
}
.card.no-bg-no-border .card-body {
  background-color: transparent;
}
.headerRegister, .header-primary{
	background: #004070;
	color: #FFF;
}
.headerUpdate{
	background: #004070;
	color: #FFF;
}
.notBlock{
	display: none;
}
.custom-file-input {
  display: none;
}
.custom-file-label {
  display: inline-block;
  cursor: pointer;
}
.custom-icon-color {
  color: #037DE2; /* Cambia esto al color que prefieras */
}
.alert-custom {
  width:300px;    
}
.dropzone {
  border: 2px dashed #0087F7;
  border-radius: 5px;
  background: white;
}
.dropzone .dz-message {
  font-weight: 400;
  text-align: center;
  margin: 2em 0;
}
.dropzone .dz-message .fa {
  font-size: 50px;
  margin-bottom: 10px;
}

#pdf_container {
  background: #ccc;
  text-align: center;
  padding: 5px;
  max-height: 820px;
  overflow-y: auto;
}

.pdf-page {
  margin-bottom: 20px;
}

.modal-dg {
  max-width: 100%;
  margin: 30px auto;
}
.modal-body {
  padding: 0;
}
#pdfViewer {
  width: 100%;
  height: 80vh;
}
@media (max-width: 767.98px) {
  #pdfViewer {
      height: 60vh;
  }
}
/* Opcional: Para darle estilo adicional al botón */
#signatureFile {
  background-color: #007bff; /* Color azul predeterminado de Bootstrap */
  color: white;
  padding: 10px 20px;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}

#signatureFile:hover {
  background-color: #0056b3; /* Color azul más oscuro en hover */
}

.bg-info2 {
	background-color: #004070;
	border-color: #004070
}
.btn-info2 {
  background-color: #004070;
  border-color: #004070;
  color: white; /* Añade esta línea para que el texto sea blanco */
}

/* Espaciado interno del modal para que nada toque los bordes */
.modal-body {
    padding: 2rem !important; 
}

/* Contenedor del PDF con estilo de visor profesional */
#pdf_container {
    border-radius: 8px;
    background-color: #e9ecef !important; /* Gris claro sutil */
    border: 1px solid #dee2e6 !important;
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.05);
    margin: 1.5rem 0; /* Espacio arriba y abajo */
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 250px;
}

/* Estilo para los iconos dentro de los inputs */
.input-group-text {
    background-color: #f8f9fa;
    color: #007bff;
}