.new__product {
    width: 100%;
    height: 50rem;
    background-color: var(--color-fondo-grisclaro);
}

.new__product-title {
    font-family: var(--fuente_principal);
    color: var(--color_letras-H2);
    font-weight: 700;
    font-size: 25px;
    margin-top: 8px;
    margin-bottom: 20px;
}

.form_container {
    background-color: #E5E5E5;
    margin: 1rem auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.new__product-input {
    background-color: #FFFFFF;
    padding: 15px;
    margin: 1rem auto;
    border-radius: 10px;
    box-shadow: 1px 3px 3px 0px rgba(22, 26, 45, 0.11);
    width: 31rem;
    outline: none;
    border: none;
}

.new__product-input:focus {
    outline: none;
    resize: none;
    border: none;
}

.new__product-inputdes:focus {
    outline: none;
    resize: none;
    border: none;
}

.new__product-textBox:hover {
    box-shadow: 0px 5px 10px 5px rgba(22, 26, 45, 0.11);
    transform: scale(1.02);
}

.form-selection {
    background-color: #FFFFFF;
    padding: 15px;
    margin: 1rem auto;
    border-radius: 10px;
    box-shadow: 1px 3px 3px 0px rgba(22, 26, 45, 0.11);
    width: 33rem;
    outline: none;
    border: none;
}

.form-description {
    column-count: 20;
    background-color: #FFFFFF;
    padding: 15px;
    margin: 1rem auto;
    border-radius: 10px;
    box-shadow: 1px 3px 3px 0px rgba(22, 26, 45, 0.11);
    width: 31rem;
    outline: none;
    border: none;
    height: 135px;
    resize: none;
}

::placeholder {
    color: var(--color_placeholder);
}


.new__product-button {
    padding: 16px;
    background-color: var(--color_fondo-o-letra_botones-2);
    color: #FFFFFF;
    border: none;
    cursor: pointer;
    width: 31rem;
    border-radius: 20px;
    box-shadow: 1px 3px 3px 0px rgba(22, 26, 45, 0.11);
}

.new__product-button:hover {
    box-shadow: 0px 5px 10px 5px rgba(22, 26, 45, 0.11);
    transform: scale(1.02);
}

.new__product-button:active {
    box-shadow: var(--boton-active);
    transform: scale(0.9);
}

.form_select {
    width: 30rem;
    outline: none;
    border: none;
}


@media screen and (max-width: 360px) {
    .new__product-title {
        font-size: 20px;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .new__product-textBox {
        max-width: 18rem;
    }

    .new__product-button {
        padding: 10px;
        max-width: 18rem;
    }
}

@media screen and (max-width: 768px) {
    .new__product-title {
        font-size: 20px;
        margin-top: 5px;
        margin-bottom: 20px;
    }

    .new__product-textBox {
        width: 25rem;
    }

    .new__product-button {
        padding: 10px;
        width: 25rem;
    }
}