/* Loader Styles
 * Version: 1.0.0
Author: Ravi acharya*/
#loader {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 9999;
}

#loader img {
    width: 100px;
    height: 100px;
}

.blur-background #product-submission-container {
    filter: blur(5px);
    pointer-events: none;
    opacity: 0.5;
}

#product-submission-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

#product-submission-form .form-group {
    margin-bottom: 15px;
}

#product-submission-form .form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

#product-submission-form .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

#product-submission-form .button {
    display: inline-block;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    border: none;
    border-radius: 3px;
    cursor: pointer;
    text-align: center;
}

#product-submission-form .button:hover {
    background-color: #005177;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(255, 255, 255, 0.8);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
}

#loader img {
    width: 50px;
    height: 50px;
}

body.loading {
    overflow: hidden;
}

body.loading #product-submission-container {
    filter: blur(5px);
}
.form-heading{
    text-align: center;
    font-size: 17px;
    padding: 10px;
    background-color:blueviolet;
    color: #fff;
}
