body{
    background-image: radial-gradient(farthest-corner at right top,#5B8FB9, #060047);
    background-size: cover;
    background-repeat: no-repeat;
    height:100vh;
    font-family: 'Roboto', cursive;
}

.conteudo {
    display: flex;
    gap: 2em;
    justify-content: center;
    margin:4em;
}

.principal {
    padding: 2em;
    box-sizing: border-box;
    display: flex;
    background: #FF5F9E;
    border-radius: 10px;
    gap: 2em;
    height: 380px;
    align-items: center;
}

 .mochila {
    min-width: 170px;
    max-width: 170px;
    height: 180px;
    padding-top: 80px;
    background-color: #d84736;
    box-shadow: inset 0 6px 0 2px #e64a3e, 0 -93px 0 -77px #3b1045, 0 -93px 0 -72px #d84736, 0 -93px 0 -68px #3b1045;
    background-image: linear-gradient(to right, transparent 5px, transparent 20px, transparent 1px, transparent 25px, transparent 5px, transparent 20px, transparent 20px, transparent 86px, #c1382e 45px, #c1382e 230px, transparent 25px, transparent 172px );
    background-position: center 254px;
    background-size: 305px 6px;
    background-repeat: repeat-x; 
    border: 5px solid #410c38;
    border-radius: 85px 85px 44px 44px;
    display: inline-block;
    vertical-align: top;
}
  
.mochila:before, .mochila:after {
    display: block;
    content: '';
    position: absolute;
  }
  
.mochila:before {
    height: 75px;
    width: 118px;
    background-image: radial-gradient(circle closest-corner at 13px 29px , #af342c, #af342c 2px, transparent 2px, transparent), radial-gradient(circle closest-corner at 13px 29px , #491033, #491033 4px, transparent 4px, transparent), linear-gradient(to bottom, transparent 10px, transparent 15px, #491033 5px, #491033 18px, transparent 18px, transparent 100px), linear-gradient(to right, #af342c 10px, #af342c 10px, transparent 10px, transparent 16px, #af342c 9px, #af342c 50px), linear-gradient(to bottom, #af342c 8px, #af342c 16px, #491033 8px, #491033 30px, #af342c 20px, #af342c 72px, #af342c 10px, #af342c 57px, #af342c 5%);
    margin-left: 22px;
    margin-top: 58px;
    border: 4px solid #491033;
    border-radius: 11px;
    box-shadow: 0 4px 0 0 #c1382e, inset 0px 4px 1px 0 #c03527;
    content: '||';
    color: transparent;
    font-family: Comic Sans MS;
    font-weight: bold;
    z-index: 1;
    text-shadow: rgb(0, 0, 0) -2px -86px 0px;
    font-size: 14px;
}
  
.mochila:after {
    margin-left: 67px;
    margin-top: -30px;
    background: #cca16a;
    width:26px;
    height:26px;
    border: 3px solid #491033;
    border-radius: 3px;
    transform: rotate(45deg);
}

.adicionar {
    width: 100%;
}

.adicionar input {
    width: 100%;
    box-sizing: border-box;
    margin: 0.5em 0 1em;
    padding: 1em 0.5em;
    border-radius: 10px;
    border: 2px solid #40112D;
}

.adicionar label {
    display: block;
}

.cadastrar {
    border:none;
    background-color: #5B8FB9;
    color: #FFFFFF;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    padding-bottom: 2em;
}

.levar{
    font-size: 16px;
    font-weight: bold;
}

.lista {
    margin: 0;
    padding: 0;
}

.item {
    list-style: none;
    padding: 0.6em 2em;
    background: #FFFFFF;
    border-radius: 10px;
    width: 400px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    gap:1em;
    font-size: 16px;
    margin-bottom: 1em;
}

.item strong {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    Background: #FF5F9E;
    font-weight: 400;
}

@media screen and (max-width:800px){
    
    .conteudo{
        flex-direction: column;
        align-items: center;
    }

    .principal{
        height: 280px;
        padding:2em;
        flex-direction: column;
        align-items: center;
        justify-content: center;
    }

    .mochila{
        display:none;
    }

    .adicionar{
        padding:0.5px;
        margin:0.5px;
    }

    .item{
        width: 100%;
    }

}