@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

* {
    padding: 0;
    margin: 0;
}

body {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: linear-gradient(171deg,rgba(0, 191, 255, 1) 40%, rgba(168, 238, 255, 1) 100%, rgba(255, 54, 54, 1) 51%);
    font-family: 'Montserrat', sans-serif;
}


.container {
    /* display: grid; */
    /* width: 100vw; */
}
.logo {background-color: white; font-size: 50px; padding: 5px;border-radius: 5px;}

.total {
    /* width: auto; */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100vw;
}

.income, .expense, .balance {
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-radius: 20px;
}

.balance {
    background-color: #332f7e;
    height: 100px;
    width: 500px;
}


.money {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 10px;
}

.income, .expense {
    height: 100px;
    width: 250px;
}


.income {
    background-color: #015f2b;
}
/* #276342 */
.expense {
    background-color: #5f0101;
}

.data p{
    font-size: 20px;
    margin-top: 5px;
}

.simbol {

    padding: 15px;
    border-radius: 10px;
}

.peso{background-color: #3b3792; padding-left: 20px; padding-right: 20px;}
.up{background-color: #02863d;}
.down{background-color: #800202;}


.balance .data, .peso {
    color: #E0D7FF;
}

.income .data, .up {
    color: #03fa72;
}

.expense .data, .down {
    color: #ff0000;
}






.tabo {
     display: flex;
    justify-content: center;
    align-items: center;
    width: 100vw;
}
.layer {
    display: flex;
    justify-content: space-between;
    margin-top: 10px;
    gap: 50px;
}

.form {
    background-color: #54015f;
    padding: 30px 25px 15px 25px;
    border-radius: 20px;
    color: #ffffff;
}

.formControl {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    gap: 5px;
}

.formControl label {
    font-size: 13px;
    
}

input {
    background-color: #292829;
    /* border: none; */
    padding: 6px;
    border-radius: 8px;
    color: white;
}

.input-group {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

/* .btn {
    background: radial-gradient(circle,rgba(166, 78, 153, 1) 0%, rgba(115, 7, 186, 1) 53%);
    border: none;
    color: #ffffff;
    padding: 8px;
    border-radius: 8px;
    
} */

.btn {
    background-image: linear-gradient(to right, #6253e1, #852D91, #6B8DD6, #8E37D7);
    box-shadow: 0 4px 15px 0 rgba(126, 52, 161, 0.75);
    width: 200px;
    font-size: 16px;
    font-weight: 600;
    color: #fff;
    cursor: pointer;
    margin: 20px;
    height: 55px;
    text-align:center;
    border: none;
    background-size: 300% 100%;
    border-radius: 50px;
}

.btn:hover {
    background-position: 100% 0;
    transition: all .4s ease-in-out;
}

.all {
    background-color: #54015f;
    padding: 30px 25px 15px 25px;
    border-radius: 20px;
    color: #ffffff;
    height: 100%;
}

.filter {
    background-color: #510286;
    padding: 10px 20px 10px 20px;
    border-radius: 20px;
}

.filter a {
    text-decoration: none;
    color: white;
    padding: 7px 25px 7px 25px;
    background-color: #015f2b;
    border-radius: 30px;
}

.list {
    margin-top: 20px;
}
.list li{
    display: flex;
    justify-content: center;
    padding: 5px; 
}

.delete {
    font-size: 20px;
    width: 25px;
    height: 25px;
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: red;
    border: none;
}

button {
    height: 100%;
}

.highlow {
    display: block;
    align-self: center;
}

.highlow button{
    padding: 15px;
    border-radius: 10px;
    border: none;
    width: 110px;
    cursor: pointer;
}

.up.active {
  background-color: #2ecc71;
  color: #fff;
  border-color: #27ae60;
}

/* Specific colors for Expenses (Red) */
.down.active {
  background-color: #e74c3c;
  color: #fff;
  border-color: #c0392b;
}

li {
    /* background-color: #510286; */
    display: flex;
}
.resibo {
    display: flex;
    background-color: #5e0e8b;
    width: 100%;
    justify-content: space-between;
    border-radius: 10px;
    padding: 5px;
    padding-left: 1px;
    border-right: 5px solid;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.left {
    display: flex;
    align-items: center;
    width: 50%;
    padding: 10px;
    gap: 15px;
}

.right {
    display: flex;
    align-items: center;
    width: 50%;
    justify-content: right;
    gap: 25px;
}

.info {color: white;}
.plus {color: #03fa72; border-color: #03fa72;}
.minus {color: #ff0000; border-color: #ff0000;}

@media (max-width:768px) {.layer {gap: 1px;}}
@media (max-width:639px) {.balance {width: 250px;}.money, .money p {font-size: 13px;}.income, .expense {height: 60px;width: 140px;}
.layer {flex-direction: column;}.form {padding: 15px 15px 15px 15px;margin: 10px;}.btn {display: flex;align-items: center;justify-content: center;width: 330px;}
.all{margin: 10px;}
.filter {
    font-size: 12px;
}

}
@media (max-width:375px) {.filter {font-size: 11px;}}
