@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600&family=Spline+Sans+Mono:wght@400;500;600;800&display=swap');
body{
    background: #002B5B;
    font-family: 'Poppins', sans-serif;
    color: #002B5B;
}
header{
    background-color:rgb(245, 245, 245) ; /* Define a cor de fundo do header */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 5); /* Adiciona uma sombra suave */
}
section{
    width: 40%;
    margin: auto;
}
h1{
    margin: 0; 
    padding: 1%;
}
h2{
  line-height: 0%;
  padding-top: 0%;
  padding-left: 2%;
}
h3{
    line-height: 0%;
    margin-top: 3%;
    padding-left: 1%;
    font-size: 120%;

}
select{
    width: 100% ;
    height: 70%;
    border-style: hidden;
    padding: 1%;
    font-size: 100%;
    background-color: rgb(245, 245, 245);
    font-family: 'Poppins', sans-serif;
}
button {
    background-color: #1A5F7A;
    border-style: none;
    border-radius: 3px;
    color: rgb(245, 245, 245);
    font-size: 90%;
    transition: #1A5F7A 0.3s ease;
    margin-left: 3%;
    margin-top: 2%;
    font-family: 'Poppins', sans-serif;
  }
  
button:hover {
    background-color: #159895;
  }
option{
    font-size: 130%;
  }
.div-header{
    border-bottom: 1px solid rgba(0, 0, 0, 5);
}
#transacoes{
    background-color: rgb(245, 245, 245);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16);
    border-radius: 10px;
    height: 35%;
    margin-top: 7.5%;
    margin-left: 23%;
    width: 20%;
    padding: 1%;
    position: absolute;
}
#valorDisponivel{
    font-family: 'Spline Sans Mono', monospace;
    font-weight: 800;
    font-size: 180%;
    color: #159895;
}
#saldo{
    background-color: rgb(245, 245, 245);
    border-radius: 10px;
    height: 10%;
    width: 20%;
    padding: 1%;
    margin-top: 0%;
    margin-left: 23%;
    position: absolute;
}
.container{
    position: flex;
    margin: auto;
    margin-top: 10%;
 
}
#coletaDados{
    background-color: rgb(245, 245, 245);
    box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.16); /* deslocamento lateral , vertical , espalahamento , cor*/
    height: 23%;
    border-radius: 10px;
    width: 22%;
    position: absolute;
}
#labelValor{
    position: absolute;
    padding-top: 12%;
    padding-left: 4%;
    top: 0;
    left: 0;
    pointer-events: none;
    transition: all 0.2s ease;
    font-size: 90%;
    color: #002B5B;
    font-family: 'Poppins', sans-serif;
}
#valor{
  width: 30%;
  padding-top: 6.5%;
  margin-left: 3%;
  border: none;
  border-bottom: 2px solid #ccc;
  font-size: 90%;
}
#valor:focus{
  outline: none;
  border-bottom-color: #1A5F7A;
  transition: all 0.2s ease;
}
#labelDescricao{
    position: absolute;
    padding-top: 12%;
    top: 0%;
    left: 37%;
    pointer-events: none;
    transition: all 0.2s ease;
    font-size: 90%;
    color: #002B5B;
}
#descricao{
  width: 60%;
  padding-top: 6.5%;
  border: none;
  border-bottom: 2px solid #ccc;
  font-size: 90%;
}
#descricao:focus{
    outline: none;
    border-bottom-color: #1A5F7A;
    transition: all 0.2s ease;
  }
#entrada{
    margin-left: 3%;
}