.upload-main {
    display: grid;
    grid-template-columns: auto auto;
    padding-top: 7vh;
    height: 100vh;
}

.description {
    font-size: 1.5em;
    background-color: rgb(65, 65, 65);
    color: white;
    display: flex;
    flex-direction: column;
    align-items: start;
    width: 20vw;
    padding-left: 2em;
    padding-top: 1em;
}

.description p {
    padding-top: .5em;
}

.upload {
    font-size: 1.5em;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 80vw;
    padding-top: 1em;
}

.upload h1 {
    padding-bottom: .5em;
    color: white;
}

.upload form {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.upload form button {
    font-size: .75em;
    margin-top: 1em;
    width: 5em;
    height: 2.5em;
    background-color: black;
    color: white;
    border: solid black 4px;
    border-radius: 8px;
    cursor: pointer;
}

.form-box {
    height: 2em;
    width: 10vw;
}

.input-box p {
    padding-bottom: 2em;
}

.input-box {
    display: flex;
    flex-direction: column;    
    align-items: center;
    color: white;
    background-color: rgb(65, 65, 65);
    border: solid black 4px;
    border-radius: 16px;
    padding: 2em;
    width: 30vw;
}


#id_name {
    width: 16em;
    margin-top: .5em;
    margin-bottom: 1em;
}

#id_description {
    margin: .5em 0em .5em 0em;
    width: 30em;
    height: 10vh;
    resize: none;
}

#id_specimen_type {
    margin: .5em 0em .5em 0em;
}

#loader {
    margin-top: 2em;
    border: 16px solid #f3f3f3;
    /* Light grey */
    border-top: 16px solid rgb(255, 65, 65);
    border-radius: 50%;
    width: 120px;
    height: 120px;
    animation: spin 2s linear infinite;
    display: none;
    /* Initially hide the loader */
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}