* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: sans-serif;
}

body {
    background-color: rgb(225, 127, 0)
}

.container-title h1 {
    width: 100%;
    height: 5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #e4e4e4;
}

.container-data {
    width: 100%;
    height: calc(100vh - 5rem);
    display: flex;
}

.container-form {
    width: 25%;
    height: fit-content;
    margin: 1rem;
    padding: 1rem;
    border-radius: 0.6rem;
    text-align: center;
    background-color: rgb(43, 43, 43);
}

h3 {
    margin: 0.5rem;
    font-size: 1.5rem;
    text-align: center;
    color: #e4e4e4;
}

.input-nombre,
.input-email,
.input-puesto {
    width: auto;
    height: auto;
    display: flex;
    margin: 0.5rem;
    justify-content: center;
    align-items: center;
    color: #e4e4e4;
}

.input-nombre label,
.input-email label,
.input-puesto label {
    width: 30%;
    text-align: start;;
}

.input-nombre input,
.input-email input,
.input-puesto input {
    width: 80%;
    height: 1.7rem;
    border-radius: 0.3rem;
    border: 0;
    padding-left: 0.5rem;
}

.btn-agregar {
    margin-top: 0.5rem;
    padding: 0.3rem 1.5rem;
    border-radius: 0.5rem;
    border: 0;
    background-color: rgb(5, 155, 110);
    color: #e4e4e4;
    font-size: 1rem;
    transition: 0.5s;
}

.btn-agregar:hover {
    background-color: rgb(3, 100, 70);
    transition: 0.5s;
}

.container-data-list {
    width: 75%;
    height: fit-content;
    margin: 1rem;
    padding: 1rem;
    border-radius: 0.6rem;
    text-align: center;
    background-color: rgb(43, 43, 43);
}

.table-usuarios {
    width: 100%;
    color: #e4e4e4;
    border: 1px solid #e4e4e4;
    border-radius: 0.3rem;
}

.table-usuarios thead {
    background-color:  rgb(3, 100, 70);
    height: 1.5rem;
    border-color: 2px solid #e4e4e4;
    font-weight: bold;
}

.btn {
    width: 40%;
    height: 2rem;
    margin: 0.3rem;
    border-radius: 0.2rem;
    border: 0;
    outline: 0;
    color: #e4e4e4;
}

.btn-editar {
    background-color: rgb(0, 3, 210);
}

.btn-editar:hover {
    background-color: rgb(0, 2, 140);
}

.btn-borrar {
    background-color: rgb(200, 25, 0);
}

.btn-borrar:hover {
    background-color: rgb(140, 19, 0);
}

.btn-generar-pdf {
    width: 20%;
    height: 2rem;
    background-color:  rgb(0, 180, 120);
    border-color: 2px solid #e4e4e4;
    font-weight: bold;
    margin-top: 1rem  ;
}

.btn-generar-pdf:hover {
    background-color:  rgb(3, 100, 70);
}