    body {
        display: flex;
        justify-content: center;
        align-items: center;
        min-height: 100vh;
        flex-direction: column;
        /* Ensure full viewport height */
        margin: 0;
        background: url("background.jpg");
        /* Remove default margin */
    }

    .nav {
        display: none;

    }

    .maincontent {
        background-color: #f0f0f0;
        padding: 20px;
        border: 1px solid #ccc;
        text-align: center;
        width: 70vw;
        height: 70vh;
        display: flex;
        flex-direction: column;


        /* Optional: Center text within the div */
    }

    .top {
        height: 90%;
        width: 100%;
        background-color: aqua;
        display: flex;

    }

    .bottom {
        width: 100%;
        height: 10%;
        background-color: red;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .half {
        width: 50%;
        background-color: antiquewhite;
        display: flex;
        flex-direction: column;
        padding: 10px;

    }

    button {
        width: 100%;
    }




    .uploadbox {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        margin: auto;
    }

    .boxlabel {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        border-radius: 0.5rem;
        border-width: 2px;
        border-color: #D1D5DB;
        border-style: dashed;
        width: 100%;
        height: 100%;
        background-color: #F9FAFB;
        cursor: pointer;
    }

    .boxlabel :hover {
        background-color: #F3F4F6;
    }

    .iconbox {
        display: flex;
        padding-top: 0.1rem;
        padding-bottom: 0.1 rem;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .iconb {
        margin-bottom: .5rem;
        width: 1rem;
        height: 1rem;
        color: #6B7280;
    }

    .inputtext {
        margin-bottom: 0.2rem;
        font-size: 0.975rem;
        line-height: 1rem;
        color: #6B7280;
    }

    img {
        height: 80%;
        width: 100%;
        background-color: rgb(215, 215, 226);
        object-fit: cover;
        /* transform: scale(2); */

    }