#uploadModal {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    transition: all 0.3s ease;
    background-color: rgba(0, 0, 0, 0.5);
}

.modal-close {
    visibility: hidden;
    opacity: 0;
}

.modal-open {
    visibility: visible;
    opacity: 1;
}

.modal-content{
    height: 70vh;
    width: 100vh;
    display: flex;
    flex-direction: column;
    background-image: url('https://pbs.twimg.com/ext_tw_video_thumb/1354914188561444867/pu/img/evATEoAIar6yiuWC.jpg:large');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    position: absolute;
    border-radius: 15px;
}

.modal-header{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5rem;
    padding-bottom: 3rem;
}

.modal-header span {
    margin-top: 1rem;
    color: gray;
    font-size: small;
}


#closeModalBtn, #closeCargarModalBtn {
    position: absolute;
    top: 0;
    right: 0;
    cursor: pointer;
    margin: 1rem;
}

#uploadForm {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

#inputFile {
    background-color: white;
    width: 90%;
    margin-bottom: 1rem;
}

#uploadBtn{
    padding: 5px;
    background-color: #235B4E;
    margin-bottom: 1rem;
    color: white;
    border-radius: 4px;
}

#uploadForm label{
    font-size: small;
    color: crimson;
}