*{
    font-family: "Press Start 2P", system-ui;
}
.agregar h2{
    padding-top: 40px;
    font-size: 24px;
    font-style: normal;
    text-align: center;
}

.form-container{
    display: flex;
    flex-direction: column;
    gap: 40px;
    padding: 40px;
}

input{
    border: 3px solid #03318C;
    border-radius: 30px;
    height: 65px;
    font-size: 10px;
    color: #03318C;
    padding-left: 20px;
}

.button-container{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 13px;
}

#button{
    border: 3px solid #03318C;
    width: 164px;
    height: 55px;
    border-radius: 15px;
    font-size: 19px;
    font-family: "IBM Plex Mono", monospace;
}

#button:hover{
 font-weight: bold;
 border: none;
 font-size: 25px;
}

.button-submit{
    background-color: #03318C;
    color: #FFFFFF;
}

.button-submit:hover{
    background-color: #0055ff;
    color: #FFFFFF;
}

.button-clear{
    background-color: #FFFFFF; ;
    color: #03318C;
}

.productos{
    
    /* width: 687px; */
    /* height: 687px; */
    /* display: flex; */
    padding: 10px;
    gap: 20px;
}

.productos h1{
    /* padding-top: 40px; */
    font-size: 22px;
    font-style: normal;
    text-align: center;
}

.productos .products-container{
    display: flex;
    gap:10px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.productos-container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    padding: 20px;
    gap: 10px;
}

.card{
    border: 3px solid #000000;
    background: #5D04D9;
    width: 196px;
    /* height: 270px; */
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    padding: 5px;
    gap: 10px;
    align-items: center;
}

.img-container{
    width: 180px;
    height: 180px;
    border-radius: 5px;
    border: 3px solid #000000;
}

img{
    width: 100%;
    height: 100%;
}

.card-container--info{
    display: flex;
    flex-direction: column;
    width: 180px;
}

.card-container--info p{
    display: flex;
    flex-direction: column;
    width: 180px;
    font-weight: bold;
}

.card-container--info p{
    text-align: left;
}

.card-container--value{
    /* background-color: blueviolet; */
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    font-weight: bolder;
}

.delete-button{
    width: 50px;
    height: 50px;
    background-color: #5D04D9;
    /* border: 1px solid red; */
    color: #FFFFFF;
    border-radius: 15px;
}

.fa-solid{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
}

.delete-button:hover{
    background-color: #FFFFFF;
}

.fa-solid:hover{
    color: #5D04D9;
}

@media (min-width: 1024px){
    .main-container{
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-around;
        align-items: center;
    }

    .products-container{
        display: flex;
        flex-wrap: wrap;
        justify-content: space-around;
    }

    input{
        border: 3px solid #03318C;
        border-radius: 30px;
        /* height: 58px; */
        font-size: 8px;
        color: #03318C;
        padding-left: 20px;
    }
}