body {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    font-family: 'FbAbsolutiHeb-Light';
}

#file-upload-container {
    padding: 2% 5%;
    width: 100%;
    display: grid;
    gap: 2%;
    grid-template-columns: repeat(4, 1fr);
}

.containerFileForm {
    text-align: center;
    background-color: #F8F8F8;
    width: 70%;
    min-height: 80%;
    border-radius: 32px;
    font-family: 'FbAbsolutiHeb-Light';
    flex-direction: column;
    align-items: center;
    padding: 20px;
}

.file-upload {
    display: flex;
    flex-direction: column;
    margin-top: 10%;
}

#nofile {
    display: none;
    font-size: 20px;
    margin-top: 5%;
}

.inputSpanlFile {
    font-size: 14px;
    margin-top: 2%;
}

.inputLabellFile {
    border-radius: 32px;
    padding: 3%;
    background-color: #FFFFFF;
    background-image: url(../images/identityFile.png);
    background-repeat: no-repeat;
    margin-bottom: 2px;
    text-align: center;
    background-position: calc(100% - 12px) center;
    max-height: 46px;
    min-height: 46px;
    text-align: center;
    padding: 5%;
}

.inputLabellFile:focus {
    outline: none;
    border: 2px solid #4eb55a;
    box-shadow: 0 0 5px #4eb55a;
    border-radius: 32px;
}

footer {
    display: none;
}

.completefile_button {
    border: none;
    padding: 0.7% 5%;
    font-size: 20px;
    background-color: #4eb55a;
    border-radius: 32px;
    color: #ffff;
    margin-top: 5%;
    font-family: 'FbAbsolutiHeb-Light';
}

.completefile_title {
    color: #4eb55a;
    margin-top: 4%;
}

@media only screen and (max-width: 1500px) {
    #file-upload-container {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media only screen and (max-width: 1200px) {
    #file-upload-container {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media only screen and (max-width: 767px) {
    #file-upload-container {
        grid-template-columns: repeat(1, 1fr);
    }

    .completefile_button {
        margin-top: 35%;
    }
}
