* {
    font-family: "Convergence", sans-serif;
    /* height: 100vh; */
    /* display: grid; */
}

.nombre {
    color: red;
}

.container {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.container-complete {
    height: 90vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

header {
    width: 100%;
}

header button {
    margin: 10px;
    float: right;
    padding: 2px;
    border-radius: 5px;
    cursor: pointer;
    background: #ffff;
}

header button:hover {
    background: rgb(255, 0, 0);
    color: rgb(255, 255, 255);
    border: 2px solid rgb(255, 0, 0);
}


/* control */

.control {
    width: 350px;
    height: 250px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.control input {
    margin: 0px 0 0 0;
    width: 100%;
    border: none;
    border-radius: 5px;
    background: rgb(216, 214, 214);
    color: #242525;
    padding: 10px 10px;
}

.control input:focus {
    outline-color: #baec31;
}

.control form{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.control form button {
    
    margin: 20px 0 0 0;
    padding: 5px 40px; 
    color: #ffff;
    background: #8aa73d;
    border: none;
    border-radius: 3px;
    cursor: pointer;
}

.control button:hover {
    background: #baec31;
}


/* end control */


/* list */

.list {
    width: 550px;
    /* height: 70%; */
    border-radius: 10px 10px 10px 10px;
    box-shadow: 0px 10px 100px rgb(104, 101, 101);
}

.list .list-head {
    height: 50px;
    background: #12a69a;
    color: #ffff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px 10px 0 0;
    /* box-shadow: 0px 5px 50px rgb(104, 101, 101); */
}

.list .list-group {
    padding: 10px 70px;
}


/* Login */

.div-login {
    display: flex;
    flex-direction: column;
    width: 30vw;
    /* background: rgb(248, 132, 132); */
    border-radius: 10px;
    padding: 40px;
    box-shadow: 0px 5px 10px rgb(104, 101, 101);
}

@media only screen and (max-width: 768px) {
    .div-login {
        width: 50vw;
    }
}

.div-login img {
    justify-content: center;
    /* height: 250px; */
    margin: auto;
    position: absolute;
    top: 50%;
}

.div-login h3 {
    text-align: center;
}

.div-login .input-group label {
    margin-bottom: 0;
}

.div-login .input-group input {
    /*width: calc(100% - 45px);*/
    width: 100%;
    padding: 10px 0px;
    padding-left: 10px;
    padding-right: 35px;
    margin: 10px 0px;
    border-radius: 5px;
    border: none;
    box-shadow: 0px 1px 5px rgb(104, 101, 101);
}

.div-login .input-group input:focus {
    outline-color: #b7db51;
    box-shadow: 0px 1px 5px #b7db51;
}

.div-login .input-group span i {
    /* color: blue; */
    /* background: rgb(79, 185, 17); */
    margin-top: 18px;
    margin-left: -30px;
    position: absolute;
    cursor: pointer;
    font-size: 22px;
}

.div-login button {
    width: 100%;
    padding: 10px 15px;
    color: #ffff;
    border-radius: 10px;
    border: none;
    background: #8aa73d;
    cursor: pointer;
}

.div-login button:hover {
    background: #b7db51;
}

#before {
    display: none;
}

.submit {
    color: #ffff;
    margin-top: -2px;
    margin-left: -30px;
    position: absolute;
    cursor: pointer;
    font-size: 22px;
}

 

 