* {
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}

body{
    background-color: #eee;
}

a{
    text-decoration: none;
}

:root{
    --color-primary: #DE3A48;
    --color-secundary: #141547;
    --color-light: #F7CED1;
    --color-blue: #2485B4;
}

#resultado{
    background-color: orange;
    padding: 10px;
    border-radius: 6px;
    color: #900;
    font-weight: 500;
}



.line h1{
    width: 210px;
    font-size: 1.5em;
    color: var(--color-secundary);
    border-bottom: 3px solid var(--color-primary);
    margin-bottom: 30px;
    padding-bottom: 7px;
}

.line-bts{
    display: flex;
    
}

.line-bts a{
    margin-left: 10px;
}

.btn-primary{
    background-color: var(--color-blue);
    border-color: var(--color-blue);
}

.box-login {

    width: 30%;
    min-height: 350px;
    margin: 30px auto 20px;
    background-color: #505A75;
    color: #fff;
    border-radius: 10px;
    padding: 30px 20px;
    text-align: center;

}

.box-login h1{
    font-size: 30px;
}

.box-login h3{
    font-size: 18px;
    background-color: var(--color-primary);
    padding: 10px;
    border-radius: 5px;
}

.box-login form input {
    margin-top: 20px;
}

.back{
    background-color: var(--color-secundary);
}

.top-header{
    display: flex;
    height: 92px;
    padding-top: 20px;
    justify-content: space-between;
}

.top-header .logo img{
   width: 164px;
}

.user-header{
    display: flex;
}

.user-header h2{
   font-size: 1.125em;
   color: #fff;
}

.center-header{
    display: flex;
    width: 60%;
    justify-content: end;
}

.bt-sair a{
  color: #fff;
  margin-left: 40px;
}

.display-header{
    background-color: #fff;
    border-radius: 5px;
    padding: 15px;
    margin: 15px 0;
}

.box-table{
    display: flex;
    flex-direction: column;
   
    
 }

 .box-table .header{
     
     display: flex;
     background-color: var(--color-secundary);
     width: 100%;
     max-width: 1116px;
     text-align: center;
     color: #fff;
 }

 .cadastrar{
    padding-top: 20px;
 }

 .cadastrar a{
    color: var(--color-light);
 }

 .linha{
   display: flex;
   height: 60px;
   background-color: #fff;
   text-align: center;
   border-bottom: 1px solid #eee;
 }

 .title-name{
   width: 300px;
   padding: 8px 5px;
 }

 .title-desc{
    width: 300px;
    padding: 8px 5px;
 }

 .title-date{
    width: 130px;
    padding: 8px 5px;
    font-size: 14px;
 }

 .title-status{
    width: 100px;
    padding: 8px 5px;
   
 }

 .title-status-pend{
    width: 100px;
    padding: 8px 5px;
    background-color: #F7CED1;
    font-weight: 500;
    color: var(--color-secundary);

 }

 .title-status-ok{
    width: 100px;
    padding: 8px 5px;
    background-color: greenyellow;
    font-weight: 500;
    
 }

 .bt-edit{
   padding: 5px;
 
 }

 .bt-edit .btn{
    width: 67px;
    margin-right: 4px;
 }



@media screen and (max-width: 767px) {

    .logo{

        margin-right: 30px;
    }

    .box-login {

        width: 94%;
    }
    
    .box-table{
       display: flex;
      flex-direction: column;
       
    }

    .box-table .header{
     
        display: flex;
        flex-direction: column;
        background-color: var(--color-secundary);
        width: 100%;
        text-align: center;
       
    }

    .linha{
        
        flex-direction: column;
        min-height: 300px;
        border-bottom: 2px solid #DE3A48;
        
    }

    .title-name, .title-desc, .title-date, .title-status{
        width: 100%;
    }

    .title-status-pend, .title-status-ok{
        width: 100%;
    }

    .tamanho-mobile{
        width: 100%;
    }

    .header .title{
        color: #fff;
        padding: 10px 15px;
    }

    .box-tarefas{
        position: relative;
        margin-top: 80px;
    }

    .line-bts{
        flex-direction: column;
    }

    .line-bts a{
        margin-top: 6px;
    }

}