
.contenedorForm {
    display: none;
    position: fixed;
    z-index: 1;
    top: 10%;
    left: 50%;
    translate: -50%;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    width: 360px;
    border-radius: 10px;
    padding: 20px;
    box-shadow: 0 4px 8px rgba(255, 255, 255, 0.1);
   
}

.contenedorForm form {
width: 94%;
}

.contenedorForm input[type="time"] {
    width: 100%;
    border: none;
    background: none;
    padding: 10px;
    font-size: 16px;
    text-align: center;
}

.contenedorForm label {
    font-weight: bold;

}

.contenedorForm input[type="text"]:focus, .contenedorForm input[type="nomber"]:focus {
    border: 3px blue;
    background-color: azure;
}

.contenedorForm input[type="text"],.contenedorForm input[type="nomber"] {
    width: 100%;
    padding: 10px;
    text-transform: uppercase;
    border: 1px solid #ddd;
    margin: 10px 0;
}

.inputAtencion {
    margin-bottom: 20px;
}

.inputAtencion input[type="radio"] {
    transform: scale(1.5);
    margin-right: 10px;
    accent-color: blue;

}

.contenedorForm button {
    width: 100%;
    border: none;
    border-radius: 8px;
    background-color: rgba(0, 0, 255, 0.582);
    color: white;
    padding: 10px;
}

.contenedorForm button:hover {
    background-color: rgba(0, 0, 255, 1);
}


.divBoton{
    display: flex;
    gap: 20px;
}

.divP{
    display: flex;
    margin: 20px 0;
}

.divP p{
    color: blue;
    font-weight: bold;
    font-size: 16px;
    flex: auto;
}

.divBoton .boton_cancelar{
    background-color: red;
    color: white;
}


@media screen and (max-width:780px) {
    .contenedorForm {
        background-color: whitesmoke ;
        margin-top: -30px;
        width: 80%;
        height: 100vh ;
    }

    .contenedorForm input[type="text"],.contenedorForm input[type="nomber"] {
      border: 1px solid black;
       
    }
  

 }