body {
  font-family: 'KoHo', sans-serif;
  background-color: #f8f9fa;
  /*height: 100vh;*/
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Contenedor para centrar el formulario */
.form-container {
  max-width: 700px;
  width: 150%;background-color: white;padding: 2rem;border-radius: 8px;box-shadow: 0px 0px 15px rgba(0, 0, 0, 0.1);
}

.form-control, .form-control-file {
  border-color: #428B7A !important;
}

label {
  font-weight: 600;
}

/* Botón Crear */
.btn-primary {
  background-color: #428B7A;
  border-color: #428B7A;
  padding: 15px 30px; /* Aumenta el espacio interno */
  min-width: 120px; /* Ancho mínimo del botón */
  font-size: 16px; /* Aumenta ligeramente el texto para facilitar la lectura */
  display: inline-block; /* Asegura que se respete el ancho mínimo */
  text-align: center; /* Centra el texto */
}

/* Botón Cancelar */
.btn-secondary {
  background-color: white;
  color: #428B7A;
  border: 1px solid #428B7A;
  padding: 15px 30px;
  min-width: 120px;
  font-size: 16px;
  display: inline-block;
  text-align: center;
}

.btn-secondary:hover {
  background-color: #f8f9fa;
  color: #428B7A;
}

.row {
  margin-top: 1.5rem;
}

.form-control::placeholder {
  color: #6c757d;
}

/* Botones centrados */
.btn-container {
  text-align: center;
}

.btn {
  margin-right: 10px;
}

h1 {
  text-align: center;
}

b {
  display: block;
  text-align: center;
  margin-bottom: 20px;
}

.file-upload-container {
  width: 100%;
  position: relative;
}

.custom-file-upload {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 20px;
  border: 2px dashed #d3d3d3;
  border-radius: 8px;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  color: #999;
  font-size: 16px;
  transition: border-color 0.3s ease;
}

.custom-file-upload:hover {
  border-color: #428B7A;
}

.custom-file-upload span {
  pointer-events: none;
}

.file-examine {
  color: #428B7A;
  cursor: pointer;
}

#documento1 {
  display: none;
}

.imagen {
  align-items: center;
  width: 90px;
}

#documento2 {
  display: none;
}

@media (max-width: 855px) {
  .img{
    width: 70px;
    margin-top: 2rem;
    padding-top: 10rem;
  }

  .btn-primary {
    padding: 20px 40px;
    min-width: 150px;
  }

  .btn-secondary {
      padding: 20px 40px;
      min-width: 150px;
  }

}

@keyframes slideIn {
  from {
      opacity: 0;
      transform: translateY(-20px);
  }
  to {
      opacity: 1;
      transform: translateY(0);
  }
}