/* just making it easier for myslef as i dont use bootstrap*/
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
*:focus-visible {
    outline: none!important;
}
body {
    font-family: "Lato", sans-serif;
    background: url('doublem-znaczki.jpg') no-repeat center center/cover;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
    margin: 0;
}
.main {
    display: flex;
    max-width: 90vw;
    min-width: 1200px;
    min-height: 600px;
    box-shadow: 0 0 15px #ddd;
}

.column {
    display: flex;
    flex-direction: column;
    width: 50%;
    justify-content: center;
}


.leftBanner {
    background: url('doublem-gory.jpg') no-repeat center center/cover;
    padding: 5px 10px;
    text-align: center;
    color: black;
}

form {
    padding: 25px;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.input {
    border: 2px solid #d9d9d9;
    width: 75%;
    padding: 12px 16px;
    font-size: 16px;
}
.input:focus-visible {
    border: 2px solid #1798d1;
    transition: 0.5s ease-in-out;
}

.button {
    background-color: #1798d1;
    color: #fff;
    padding: 0 12px;
    font-size: 12px;
    line-height: 33px;
    cursor: pointer;
    border: none;
    text-align: center;
}

.buttonsContainer {
    display: flex;
    gap: 50px;
    justify-content: center;
}

.fileInput {
    width: 100%;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border: 2px solid #d9d9d9;
}
/* This css is for inputs */
input[type="file"] {
    display: none;
}
#main-file-input{
    pointer-events: none;
}
/*label[for="main-file-input"] {
    width: 300px;
    height: 200px;
    border: 1px solid var(--border-color);
}*/
label[for="label-input-1"],label[for="label-input-2"] {
    
    border: 1px solid var(--border-color);
    cursor: pointer;
    pointer-events: all;
}
/* This is css for file display */
#file-display{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    min-width: 300px;
    min-height: 60px;
    /*border: 1px solid var(--border-color);*/
}

/* ----------------------------------------------------------------------- */
/* where this is the single cell */
.file-info{
    display: flex;
    padding: 12px 16px;
    width: 47%;
    margin: 3px;

    align-items: center;

    word-wrap: break-word;


    font-size: 12px;
    text-align: center;
    border: 1px #ccc solid;

}
.file-info > div {
    margin: auto 0;
    width: 75%;
}
.file-info > p {
    margin-right: 10px ;
}



button.delete-file{
    font-size: 12px;
    line-height: 0px;
    border: 0;
    float: right;
    margin-left: auto;
    padding: 10px 6px;
    border-radius: 50%;
    color: #fff;
    background-color: #1798d1;
    font-weight: 700;
    aspect-ratio: 1 / 1;
    height: 0;
}
/* ----------------------------------------------------------------------- */


.error{
    color: red;
}
#bar-container{
    height: 25px;
}
#bar-color{
    background-color: green;
    width: 100%;
    height: 100%;
    opacity: 0%;
}