@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');


    .cadastraOrdemDeServico{
        background-color: #003bfc; /* Azul Royal */
        color: white;
        font-size: 16px;
        padding: 10px 20px;
        border-radius: 5px;
        border: none;
        cursor: pointer;
    }

    .cadastraOrdemDeServico:hover{
        background-color: #002bbd;
    }


    .formOS{
        display: flex;
        flex-direction: column;
    }

    .formOS__inputs{
        width: 100%;
        padding: 10px;
        font-size: 16px;
        margin-bottom: 15px;
        border: 1px solid #ccc;
        border-radius: 8px;
        font-family: 'Roboto';
        box-sizing: border-box;
    }

    .input__OS{
        padding: 0.5rem;
        margin-top: 10px;
        margin-left: 0px;
        width: 70%;
        font-size: 18px;
    }

    .cadastraOS__titulo{
        font-size: 25px;
        color: rgb(16, 33, 227);
        font-family: 'Roboto';
        margin-top: 80px;
        margin-right: 50px;
    }


    .formulario__cadastro_OS{
        display: flex;
        flex-direction: column;
        margin-top: 10px;
        height: 60vh;
        margin-left:30px;
        width: 70%;
    }

    .alertaOS{
        display: none;
        font-family: 'Roboto';
        position: absolute;
        margin:190px 0 0 200px;
        border: 1px solid #000000;
        padding: 2rem;
        border-radius: 5px;
        background-color: #f1f0f0;
        align-items: center;
        height: 70px;
        z-index: 10;
    }

    .alertaOSFail{
        display: none;
        font-family: 'Roboto';
        position: absolute;
        margin:190px 0 0 200px;
        border: 1px solid #000000;
        padding: 2rem;
        border-radius: 5px;
        background-color: #f1f0f0;
        align-items: center;
        height: 70px;
        z-index: 10;
    }

    .alertaOS__fechar{
        display: block;
        color: #fff;
        border: 1px solid #fff;
        border-radius: 25px;
        width: 150px;
        margin-top: 15px;
        margin-left: 0px;
        text-align: center;
        align-items: center;
        padding: 0.5rem;
        background-color: #3be72b; 
    }

    .alertaOS__fechar:hover{
        background-color: #48d63b;
        border: 1px solid #48d63b;
        cursor: pointer;
    }

   

    
   