@import url("https://fonts.googleapis.com/css2?family=Lexend:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-family: inherit;
}

a {
  text-decoration: none;
}

ul,
ol {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  padding: 0;
}

input,
textarea,
select,
button {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  border: none;
  background: none;
}

img {
  display: block;
  max-width: 100%;
}

table {
  border-collapse: collapse;
}

body {
  color: inherit;
  background: #f6fffb;
  font-family: "Poppins", sans-serif;
  min-height: 100dvh;
}

.container {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 20px;
  justify-content: center;
  align-items: stretch;
}

.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}

.green {
  color: #00b872;
}

.red {
  color: #d63031;
}

.saldo {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  width: 100%;
}
.saldo .f1 {
  flex: 1;
}

.banks {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media screen and (max-width: 768px) {
  .banks {
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
  }
}
.banks .bank .infos {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 5px 10px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  transition: all 0.3s ease-in-out;
}
.banks .bank .infos p {
  font-size: 14px;
  flex: 1;
  cursor: default;
}
.banks .bank .infos h4 {
  font-weight: 600;
  cursor: default;
}
@media screen and (max-width: 768px) {
  .banks .bank .infos h4 {
    font-size: 14px;
  }
}
@media screen and (min-width: 768px) {
  .banks .bank .infos {
    flex-direction: column;
    gap: 0;
    padding: 20px;
  }
  .banks .bank .infos svg,
  .banks .bank .infos img {
    margin-bottom: 10px;
  }
  .banks .bank .infos:hover {
    transform: scale(1.1);
  }
}

.edit-field {
  margin-top: 10px;
}

.edit-field input {
  width: 100%;
  padding: 5px;
  margin-right: 5px;
  border: 1px solid #e4e4e5;
  border-radius: 5px;
  text-align: center !important;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .edit-field input {
    font-size: 20px;
    padding: 10px;
  }
}

.edit-field button {
  display: block;
  padding: 5px 10px;
  background: #00b872;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
  font-size: 10px;
  text-transform: uppercase;
  width: 100%;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  .edit-field button {
    font-size: 16px;
    padding: 10px;
  }
}

#login {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100dvh;
}
#login .container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.07);
  max-width: 400px;
  margin: 0 auto;
}
#login .input-field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
#login .input-field input {
  padding: 10px;
  border: 1px solid #e4e4e5;
  border-radius: 5px;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 768px) {
  #login .input-field input {
    font-size: 16px;
  }
}
#login button {
  padding: 10px;
  background: #00b872;
  color: #fff;
  border-radius: 5px;
  cursor: pointer;
}

.formulario {
  padding: 20px;
  background: #fff;
  border-radius: 15px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease-in-out;
}

.dataModificacao {
  font-size: 12px;
  color: #3d3d3d;
  text-align: center;
  margin-bottom: 20px;
}

.graficos {
  margin-top: 40px;
}
.graficos h2 {
  text-align: center;
}
.graficos h3 {
  text-align: center;
}
.graficos p {
  margin-bottom: 20px;
  text-align: center;
}
.graficos p strong {
  color: #00b872;
}

/*# sourceMappingURL=style.css.map */
