.top-header {
    font-size: 0.8em;
    height: 7em; 
}

.top-header :hover{
    color: blue;
}

.top-header a:after{
    display: none !important;
}

.uploadImg {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1em;
    border: 1px solid #ddd;
    padding: 1em;
    border-radius: 0.5em;
}

.uploadImg img.preview {
    max-width: 168px;
    border-radius: 0.25em;
}

.uploadImg input[type="file"] {
    color: transparent;
    width: 158px;
    border: 0 !important;
    box-shadow: none !important;
    min-height: 46px;
}

.uploadImg input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}

.uploadImg input[type="file"]::before {
    content: "Selecionar arquivo";
    color: #0608a7;
    display: inline-block;
    background: transparent;
    border: 1px solid #0608a7;
    border-radius: 0.5em;
    padding: 0.5em 1em;
    outline: none;
    white-space: nowrap;
    cursor: pointer;
    font-weight: 700;
    font-size: 10pt;
    text-align: center;
    transition: all 0.2s;
}

.uploadImg input[type="file"]:hover::before {
    background: #0608a7;
    color: #fff;
}

.uploadImg input[type="file"]:hover::before {
    border-color: black;
}

.uploadImg input[type="file"]:active::before {
    background: -webkit-linear-gradient(top, #e3e3e3, #f9f9f9);
}
