.ets-form {
    max-width: 750px;
    padding: 20px;
    border: 1px solid rgba(218, 146, 45, 1);
    border-radius: 10px;
    background: linear-gradient(167deg, rgb(0, 0, 0) 30%, rgb(239, 168, 11) 100%);
}

.ets-form label {
    display: block;
    font-size: 12px;
    color: white;
    width: 100%;
    text-align: center;
}

.ets-form input[type="text"],
.ets-form input[type="email"],
.ets-form input[type="number"] {
    width: 100%;
    padding: 8px;
    border-radius: 20px;
    border: 1px solid #ccc;
	box-sizing: border-box;
}

.ets-form button {
    background-color: white;
    color: black;
    border: none;
    padding: 10px 15px;
    border-radius: 20px;
    cursor: pointer;
}

.ets-form-button-container {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ets-form-title {
    font-size: 20px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 20px;
    width: 100%;
}

.ets-form-product-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    gap: 10px;
}

@media (max-width: 650px) {
    .ets-form-product-container {
        display: flex;
        gap: 5px;
        flex-direction: column;
        align-items: center;
    }
    
}

.ets-form-description {
    text-align: center;
    font-size: 12px;
    color: white;
    margin-bottom: 10px;
}