.custom-file-upload {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background-color: #f4a825; /* color amarillo */
    color: #000;
    padding: 10px 16px;
    border-radius: 5rem;
    cursor: pointer;
    font-weight: 600;
    transition: background-color 0.3s;
    width: 100%; /* se acopla al div padre */
    box-sizing: border-box;
    text-align: center;
}

.custom-file-upload:hover {
    background-color: #d58a11;
    color: #fff;
}

.custom-file-upload i {
    font-size: 1.5rem;
}

#file {
    display: none;
}
