.bg_body{
    background-color: #e3e3e3;
}
.tarea-ghost {
    opacity: 0.5;
    background: #000000 !important;
    border: 10px dashed #000;
}

.tarea-seleccionada {
    /* transform: scale(1.02); */
    box-shadow: 0px 4px 10px rgb(0, 0, 0);
    transition: transform 0.2s ease-in-out;
}

.tarea-dragging {
    background: #000000 !important;
    color: rgb(0, 0, 0);
    opacity: 0.8;
    transform: rotate(3deg);
}
.tarea {
    cursor: grab;
}
/* LISTA DE TABLERO */
.lista_tablero {
    background: #e6e6e6;
    border-radius: 10px;
    box-shadow: 0px 4px 10px rgb(255, 0, 0);
    cursor: pointer;
}
.lista_tablero:hover {
    background: #ffe60049;
    box-shadow: 0px 4px 10px rgb(0, 0, 0);
    transform: scale(1.01);
}
/* BOTONES */
.boton_circulo {
    width: 40px;
    height: 40px;
    border-radius: 5%;
    /* background-color: #e6e6e665; */
    border: none;
    /* box-shadow: 0px 4px 10px rgba(150, 150, 150, 0.315); */
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    /* texto sin decoracion */
    text-decoration: none;
}

/* MODAL REDONDEADO */
.modal_redondeado {
    border-radius: 20px;
}


/* LABEL FLOTANTE */
.label {
    position: absolute;
    top: 50%;
    left: 20px;
    transform: translateY(-50%);
    font-size: 16px;
    color: #6c757d;
    background-color: white;
    padding: 0 5px;
    transition: 0.3s ease all;
    pointer-events: none;
}

.form-control {
    height: 45px;
    padding: 0 20px;
    font-size: 16px;
    border-radius: 7px;
    box-sizing: border-box;
}
::placeholder {
    color: transparent;
}
.form-control:focus + .label,
.form-control:not(:placeholder-shown) + .label {
    top: -0px;
    left: 20px;
    font-size: 14px;
    font-weight: 600;
    color: rgb(109, 109, 109);
    background-color: white;
    padding: 0 5px;
    transition: 0.3s ease all;
    border-radius: 10px;
}

/* .form-control:focus {
    box-shadow: 0 0 5px rgb(160, 48, 160);
    border-color: #a441d1;
} */
/* LABEL FLOTANTE */
