body{
    background-color: #222;
    color: #fff;
    font-family: sans-serif;
    background-color: rgba(34, 34, 34, 0.9);
    user-select: none;
}

.container-modal{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 500px;
    height: 500px;
    margin: 100px auto;
    border: 1px solid #222;
    border-radius: 25px;
    justify-content: space-evenly;
    align-items: center;
    background-color: #222;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.6);
}



.title-modal{
    text-align: center;
    font-size: 1.8rem;
}


/*---formulario---*/
#formulario{
    display: flex;
    flex-direction: column;
    gap: 20px;
}
/*contenedor de inputs*/
.input-container{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1px;
    width: 100%;

}



/*inputs*/

#ingresarNombre{
    width: 400px;
    height: 40px;
    border-radius: 10px;

}

#ingresarSaldo{
    width: 400px;
    height: 40px;
    border-radius: 10px;
}

.label{
    justify-self: start;
    align-self: self-start;
}

.button{
    width: 350px;
    height: 40px;
    border: none;
    border-radius: 25px;
    background-color: #007bff;
    color: #fff;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 123, 255, 0,4);

}
/*---button cancelar---*/
.button:hover{
    background-color: #339cff;
    box-shadow: 0 6px 20px rgba(0, 123, 255, 0.6);
    transform: translateY(-2px);
}


/*parrafos-style*/

.parrafo{
    font-size: 1.4rem;
    font-weight: 50;
}

/*informacion asignada*/

.userContainerInfo{
    display: flex;
    gap: 10px;
}


/*Diseño responsive*/


/* ======== RESPONSIVE - MODAL ======== */

@media screen and (max-width:768px ){
    .container-modal{
        width: 80%;
        display: flex;
        flex-direction: column;

    }
    #formulario{
        width: 80%;
    }
    .input-container{
        width: 100%;
    }

    #ingresarNombre{
        width: 100%;
    }

    #ingresarSaldo{
        width: 100%;
    }
    .button{
        width: 70%;
    }
    .contenedorBotones{
        width: 100%;
    }

}

