.custom-file-input {
    color: transparent;
}

.custom-file-input::-webkit-file-upload-button {
    visibility: hidden;
}

.custom-file-input::before {
    content: 'Seleccionar archivo';
    display: inline-block;
    background: #035682;
    color: #ffffff;
    padding: 8px 12px;
    border-radius: 5px;
    cursor: pointer;
}

.custom-file-input:hover::before {
    background: #035682;
}

.custom-file-input:active::before {
    background: #035682;
}

.custom-file-input:focus::before {
    box-shadow: 0 0 0 3px #035682;
}

.custom-file-input:disabled::before {
    background: #ced4da;
    cursor: not-allowed;
}

.custom-file-input:disabled:hover::before {
    background: #b1b7bd;
}

.css-button-sliding-to-left--blue {
    min-width: 130px;
    height: 40px;
    color: #000000; 
    padding: 5px 10px;
    font-weight: bold;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
    outline: none;
    border-radius: 5px;
    z-index: 0;
    background: #fff;
    overflow: hidden;
    border: 2px solid #026fa9;
}

.css-button-sliding-to-left--blue:hover {
    border: 2px solid #026fa9;
}

.css-button-sliding-to-left--blue:hover:after {
    width: 100%;    
    
}

.css-button-sliding-to-left--blue:after {
    content: "";
    position: absolute;
    z-index: -1;
    transition: all 0.3s ease;
    left: 0;
    top: 0;
    width: 0;
    height: 100%;
    background: #035682;
    border: 2px solid #035682;    
}

.css-button-sliding-to-left--blue.hover-enabled:hover {
    border: 2px solid #035682;
    color: #ffffff; 
  }

.btn-general{
    background-color: #026fa9;
}

  #previewImage {
    max-width: 50%;  
    max-height: auto;
    margin: 0 auto;  
  }
 

  

