#page-devis {
    padding: 0 1rem;

    .register {
        max-width: 600px;
        font-size: 0.8rem;
        margin: 0 auto;
        padding: 20px;
        box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.1);
        border-radius: 8px;
        background-color: white;

        h2 {
            font-size: 25px;
            line-height: 2rem;
            text-align: center;
            font-weight: bold;
            margin: 1em 0;
            text-transform: uppercase;
            color: rgba(161, 19, 103);
        }
    
        form {
            font-size: 14px;


            input::placeholder,
            textarea::placeholder,
            select::placeholder {
                opacity: 0.4;
                color: #999;
            }
    
            label {
                font-weight: bold;
            }   
            .bold-label {
                font-weight: bold;
            }
            .form-check-label {
                font-weight: normal; // Esto evitará que las opciones de ChoiceType estén en negrita
            }
            .size-label {
                font-size: 20px;
            }
            button {
                display: block;
                width: 90%;
                font-size: 1rem;
                margin: 0 auto;
            }
        }
    }
}

@media screen and (min-width: 1158px) {
    #page-devis {
        .register {

            form {
                font-size: 18px;

                input::placeholder,
                textarea::placeholder {
                    font-size: 18px;
                    opacity: 0.4;
                    color: #999;
                }
            }
        }
    }
}