.form {
    background-color: #fff;
    box-shadow: 0 10px 60px rgb(218, 229, 255);
    border: 1px solid rgb(159, 159, 160);
    border-radius: 20px;
    padding: 2rem .7rem .7rem .7rem;
    text-align: center;
    font-size: 1.125rem;
    max-width: 320px;
}

.form-title {
    color: #000000;
    font-size: 1.8rem;
    font-weight: 500;
}

.form-paragraph {
    margin-top: 10px;
    font-size: 0.9375rem;
    color: rgb(105, 105, 105);
}

.drop-container {
    display: flex;
    gap: 1em;
    max-width: 800px;
    flex-direction: column;
    align-items: center;
    padding:0;
    border-radius: 10px;
    border: 2px dashed #32244a;
    color: #444;
    cursor: pointer;
    transition: background .2s ease-in-out, border .2s ease-in-out;
    width: 100%;
    height: 340px;
    justify-content: center;
    margin: 0;
}

.drop-container:hover {
    background: rgb(227 227 227);
    border-color: rgba(17, 17, 17, 0.616);
}

.drop-container:hover .drop-title {
    color: #222;
}

.drop-title {
    color: #444;
    font-weight: bold;
    text-align: center;
    transition: color .2s ease-in-out;
}

#file-input {
    width: 350px;
    max-width: 100%;
    color: #444;
    padding: 2px;
    width: 70%;
    background: #fff;
    cursor: pointer;
    border-radius: 10px;
    border: 1px solid rgba(8, 8, 8, 0.288);
}

#file-input::file-selector-button {
    margin-right: 20px;
    border: none;
    border:1px solid #fff;
    background: linear-gradient(0deg, rgba(50,36,74,1) 0%, rgba(79,68,99,1) 100%);
    padding: 15px 30px;
    border-radius: 10px;
    color: #fff;
    cursor: pointer;
    transition: background .2s ease-in-out;
}

#file-input::file-selector-button:hover {
    background: transparent;
    border:1px solid #32244a;
    color:#32244a;
}

img#image-preview {
    max-width: 100%;
    height: 98px;
}

div#image-preview-container {
    position: absolute;
    bottom: 1em;
    z-index: 120;
    cursor: pointer;
    display: flex;
    width: 100px;
}

.frontBtn {
    width: 100%;
}

.uploadCont{
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: center;
    align-items: center;
    width: 100%;
    position: relative;
    margin: 0 auto;
    height: 100%;
    max-height: 356px;
}

.lottieStyle{
    width: 150px;
    height: auto;
    margin-top: -4vh;
    margin-bottom: -4vh;
}

.lottiePlayer {
    filter:hue-rotate(32deg) contrast(1) saturate(0.4);
}

/*Responsive*/

@media only screen and (max-width: 768px) {
    .info-box {
        margin: 2em 0;
        padding: 2em;
        width: 100%;
        background-color: #6c97c1;
        color: white;
        text-align: justify;
        box-shadow: 0 0 14px 0px #6f6f6f;
    }

    .lottieStyle{
        margin-top: -3vh;
    }
}
@media only screen and (max-width: 428px) {
   
    .drop-container {
        height: 17vh;
    }
    #file-input {
        width: 100%;
    }
    div#image-preview-container {
        position: inherit;
        bottom: 0;
        margin-top: 1em;
    }

    .lottieStyle{
        margin-top: -3vh;
    }
}