
form.product-entry {
    max-width: 700px;
    border-radius: 12px;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

div.product-entry {
    display: flex;
    justify-content: center;
}

form.product-entry div.input-box {
    width: 300px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    font-size: 15px;
    padding: 20px;

}

.product-entry .input-box label {
    font-size: 20px;
}

.product-entry input {
    font-size: 18px;
    width: 100%;
    border: none; /* Remove default borders */
    border-bottom: 1px solid black; /* Add a black bottom border */
    outline: none;
}
.input-box input:active {
    border: none; /* Remove default borders */
    border-bottom: 1px solid black; /* Add a black bottom border */
    outline: none;
}

.product-entry input.image-input{
    border: none !important; /* Remove default borders */
}

.product-entry p {
    color: #737373;
}

.product-entry .col {
    flex: 1;
}

.product-entry .row {
    display: flex;
    flex-wrap: wrap;
}

.product-entry h2 {
    padding: 20px 0 0 20px;
    color: var(--wwave-blue);
}

.product-entry .submit {
    display: flex;
    justify-content: center;
    padding: 20px;
}

.product-entry .submit-button {
    display: inline-block;
}

.product-entry .submit-button button {
    border-radius: 20px;
    border: none;
    padding: 10px 30px;
    font-size: 24px;
    display: inline-block;
}

.product-entry .uploaded-image {
    width:100px;
    height:100px;
    background-position: center;
    background-size: cover;
}

.product-entry .image-view {
    display: flex;
    justify-content: center;
    padding:20px;
    display: none;
}

.product-entry select {
    width: 100%;
}

.product-entry #image-count {
    color: var(--wwave-blue);
}

@media only screen and (max-width:768px) {
    form.product-entry {
        max-width: 500px;
    }
    form.product-entry div.input-box {
        width: 100%;
    }
}