*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body{
    background-color: rgba(175, 175, 175, 0.1);
}
body.form-open{
    position: fixed;
    width: 100%;
    height: 100%;
}
.container{
    text-align: center;
    width: 100%;
    align-items: center;
}
.formulario{
    max-width: 400px;
    display: none;
}
.formulario form{
    display: flex;
    padding: 10px;
    flex-direction: column;
    text-align: left;
}
.formulario form label{
    margin-bottom: 5px;
    font-weight: bold;
}
.formulario form input, select{
    margin-bottom: 10px;
    padding: 5px;
    font-size: 15px;
}
.formulario form button{
    border: none;
    border-radius: 5px;
    padding: 5px;
    margin-bottom: 10px;
    color: white;
    background-color: green;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    font-weight: bold;
}
#btn_unlock{
    background: transparent;
    border: 1px solid green;
    font-family: Verdana, Geneva, Tahoma, sans-serif;
    padding: 5px;
    color: green;
    text-shadow: 1px 1px 2px;
    margin: 20px auto;
}
.form-confirm form #close{
    font-weight: bold;
    border: none;
    color: red;
    position: absolute;
    right: 0;
    top: 0;
}
.form-confirm{
    display: none;
    position: absolute;
    background-color: rgba(0, 0, 0, 0.5);
    width: 100%;
    height: 100%;
    z-index: 1;
}
.form-confirm form{
    border: 1px solid white;
    border-radius: 10px;
    background: white;
    position: relative;
    max-width: 250px;
    top: 30%;
    margin: 0 auto;
    padding: 10px;
}
.form-confirm form input{
    text-align: center;
    margin-top: 40px;
    margin-bottom: 20px;
    padding: 3px;
}
.form-confirm form button{
    background: transparent;
    border: 1px solid green;
    border-radius: 5px;
    color: green;
    padding: 10px;
}
.tabela{
    max-width: 100%;
}
#tabela, th, td{
    border-collapse: collapse;
    padding: 10px;
    text-align: center;
}
#tabela td img{
    max-width: 20px;
    color: red;
}