@media (max-width: 991px) {
    .form-wrapper {
        /* width: 632px; */
        z-index: 2;
        background: none;
        backdrop-filter: blur(7px);
        box-shadow: none;
        border: 1px solid var(--stroke);
    }

    .form-wrapper p,
    .inputWrapper label,
    .inputWrapper input {
        color: var(--text-black);
    }

    .inputWrapper input::placeholder,
    .inputWrapper textarea::placeholder {
        color: var(--Secondary, #A6A6A6) !important;

    }
}
textarea {
    height: 156px;
    resize: none;
    width: 100%;
    display: block;
}



.upload input[type="file"]::-webkit-file-upload-button {
    visibility: hidden;
}

.upload {
    margin: auto;
    width: 100%;
    text-align: center;
    padding-block: 20px;
    margin-bottom: 32px;
}

.upload input[type="file"] {
    width: fit-content;
    position: absolute;
    color: transparent;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    border-radius: 8px;
    border: 1px dashed var(--orange-500, #FF8E45);
    background: rgba(255, 244, 236, 0.50) !important;
}
.upload .upload-img{
    margin-inline: auto;
    margin-bottom: 16px;
    display: block;
}
.upload button {
    margin-bottom: 24px;
    display: block;
    border: none;
    outline: none;
    font-size: 16px;
    font-weight: 700;
    border-radius: 4px;
    background: var(--orange-500, #FF8E45);
    color: white;
    padding: 10px;
    width: 139px;
    margin-inline: auto;
    z-index: 2;
}
.upload .upload-drop {
    margin-bottom: 12px;
    font-size: 14px;
    font-weight: 400;
    color: var(--text-black) !important;

}
.upload .uploading-kinds {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-black) !important;
}
.upload .upload-img,
.upload button ,
.upload .upload-drop,
.upload .uploading-kinds {
    position: relative;
    z-index: 2;
}
