.categoria label{
    
    padding: 15px 10px;
    background: #f6f6f6;
    margin-bottom: 10px;
    cursor: pointer;
    width: 100%;
}
.categoria label:hover{
    background: #ccc;
}
.categoria label::before {
    content: " > ";
    margin-right: 20px;
    border-radius: 50%;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    float: left;
    background-color: #172b4d;
    color: #fff;
}
.categoria ul {
    transition: all linear .6s;
    display: block;   
}
.categoria input { display: none ;}
.categoria input:checked ~ ul { 
    transform: all; 
    max-height: 0;
    display: none;
    transition: all linear .6s;
}

.flex-row {
    display: flex;
    justify-content: space-between;
    flex-direction: row;
}
.align-end {
    align-items: flex-end;
}
#conteudo p {
    border-bottom: 1px solid #ccc;
    padding: 10px;
}

.login-img {
    width: 300px;
    margin: 0 auto;
}
.login-img img {
    display: block;
    width: 100%;
}
.actions {
    width: 180px;
}
.actions .left {
    float: left;
    margin: 0 2px;
}
.actions .right{
    float: right;
    margin: 0 2px;
}
.actions.users{
    width: 210px;
}

.error {
    color: red;
}

.detalhes .form-row {
    margin-bottom: 20px;
    border-bottom: 1px solid rgb(242, 234, 234);
}
.box {
    border: 2px solid rgb(242, 234, 234);
    margin: 5px;
    padding: 5px;
}

.required {
    color: #172b4d;
    font-weight: bold;
}

.form-row {
    margin-bottom: 10px;
}