﻿.file-upload-form {
    width: fit-content;
    height: fit-content;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.file-upload-label {
    cursor: pointer;
    background-color: transparent;
    padding: 10px 25px;
    border-radius: 40px;
    border: 2px dashed var(--cosgear-5);
    box-shadow: 0px 0px 200px -50px rgba(0, 0, 0, 0.719);
}
    .file-upload-label .desktop p {
        padding: 0;
        margin: 0;
    }

    .file-upload-label input {
        display: none;
    }

    .file-upload-label .bx {
        font-size: 50px;
        margin: 0;
        margin-bottom: 5px;
    }


.file-upload-design {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
}

.browse-button {
    background-color: rgb(82, 82, 82);
    padding: 5px 15px;
    border-radius: 10px;
    color: white;
    transition: all 0.3s;
}

    .browse-button:hover {
        background-color: rgb(14, 14, 14);
    }

@media (max-width: 750px) {
    .desktop {
        display: none;
    }
}
