* {
box-sizing: border-box;
-webkit-box-sizing: border-box; /* Safari/Chrome, other WebKit */
-moz-box-sizing: border-box;    /* Firefox, other Gecko */
transition: all 0.2s ease-out;
}

input::placeholder,
textarea::placeholder {
    color: #a4a194;
    opacity: 1;
    }

body{
    margin: 0;
    padding: 0;
    font-family: "Inter", sans-serif;
}

    .header{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        border-radius: 2px;
    }

    .demoDayLogo{
        width: 160px;
        height: auto;
    }

    h1{ 
        font-size: 20px;
        font-weight: bolder;
        text-align: left;
        color: #000000;
        margin: 0;
    }
@media screen and (max-width: 750px) {
    .header {
        flex-direction: column;
        align-items: center;
        padding: 20px;
        gap: 0;
    }
    .header img {
        height: 100px;
        width: auto;
    }
    .demoDayLogo {
        width: 120px;
        margin-right: 0;
        margin-bottom: 10px;
    }
    h1 {
        font-size: 18px;
        text-align: left;
    }

    #preview {
        width: 90% !important;
    }
}

.pageBG {
    position: fixed;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background-image: url("../imgs/BG_background_2.png");
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    transform: scaleX(-1);
}

.mainHolder {
    position: absolute;
    background: #fffdf7e7;
    height: auto;
    max-width: 1000px;
    width: 50%;
    padding: 20px 30px 30px 30px;
    border-radius: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
}

@media screen and (max-width: 1360px) {
    .mainHolder {
        width: 90%;
    }

    #preview {
       width: 80%;
   }
}

   .inputsHolder{
       position: relative;
   }

   label{
       position: relative;
       font-weight: normal;
       font-size: 15px;
       margin-left: 0%;
       bottom: 5px;
       padding-bottom: 20px;
       color: #a4a194;
   }

   input {
       position: relative;
       background: transparent;
       border: none;
       border-bottom: 2px solid #a4a194;
       width: 100%;
       height: 45px;
       left: 0px;
       padding-left: 10px;
       margin-bottom: 13px;
       font-size: 20px;
       outline: none;
   }

   input:hover{
       border-color: #fecd01;
   }

   input:focus{
       border-color: #fecd01;
   }

   .fileUpload{
       border: dashed 2px #a4a194;
       background: light;
       height: 0px;
       padding-top: 30px;
       padding-bottom: 50px;
       font-size: 10px;
       border-radius: 10px;
   }

   .downloadButton{
       position: absolute;
       font-family: "Inter", sans-serif;
       width: 100%;
       height: 35px;
       font-size: 20px;
       font-weight: bold;
       background: #FFD400;
       color: #fff;
       border: none;
       border-radius: 2px;
       cursor: pointer;
   }

   .downloadButton:hover{
       filter: opacity(80%);
   }

   .downloadSVG{
       position: absolute;
       margin-left: 10px;
       margin-top: -3px;
   }

   #preview {
       width: 50%;
       height: auto;
       margin: auto;
       border: 1px solid #ccc;
       border-radius: 2px;
   }


/* Responsive */
/*@media screen and (max-width: 1400px) {
    .header{
        width: 80%;
    }
    .mainHolder{
        width: 80%;
    }
}

@media screen and (max-width: 1000px) {
    .header{
        width: 95%;
    }
    .mainHolder{
        width: 95%;
    }
}

@media screen and (max-width: 750px) {

    body{
        background: #fff;
    }

    .header{
        width: 100%;
    }
    .mainHolder{
        width: 100%;
        background: #fff;
    }

    .inputsHolder{
        width: 100%;
        position: relative;
        top: -20px;
        left: 0%;
        height: auto;
        padding-bottom: 40px;
    }

    #preview {
        position: absolute;
        width: 200px;
        height: auto;
        border: 1px solid #ccc;
        border-radius: 10px;
        bottom: 310px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}

@media screen and (max-width: 750px) and (max-height: 800px) {

    body{
        background: #fff;
    }

    .header{
        width: 100%;
        top: 40px;
    }

    .demoDayLogo{
        width: 140px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    h1{ 
        width: 90%;
        left: 50%;
        transform: translate(-50%, -50%);
        top: 30px;
    }

    .mainHolder{
        position: absolute;
        width: 100%;
        background: #fff;
        margin-top: 100px !important;
        bottom: auto;
    }

    .inputsHolder{
        width: 100%;
        position: relative;
        top: 190px;
        left: 0%;
        height: auto;
        padding-bottom: 40px;
    }

    #preview {
        position: absolute;
        width: 200px;
        height: auto;
        border: 1px solid #ccc;
        border-radius: 10px;
        bottom: 100px;
        left: 50%;
        transform: translate(-50%, -50%);
    }

}*/