/* Fondo principal claro: #E8F0F8 (celeste muy suave)

Fondo secundario (secciones, tarjetas): #F5FBFF (casi blanco con un toque de azul)

Detalles/acento claro: #D0E6EF (azul pastel)

Texto oscuro principal: #1A3C4E (azul grisáceo profesional)

Texto secundario: #4C6A7F */
/*ESTILOS UNIVERSALES*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
    background-color:white ;
    color: #333;
    overflow-x: hidden;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}
/* NAV-BAR */
.nav-bar{
    width: 100%;
    height: 100px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #1E4E72;
}
#barra-navegacion{
    display: flex;
    align-items: center;
}
#div-salir{
    width: 100%;
    display: flex;
    justify-content: end;
    height: auto;
}
#btn-cerrar-sesion{
  padding: 10px;
  background-color: red;
  margin: 10px;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
#btn-cerrar-sesion:hover{
    background-color: rgb(195, 26, 26);
}
.nav-bar img{
    width: 80px;
    height: 80%;
    margin-right: 10px;
    border-radius: 15%;
    margin: 10px;
}
.nav-bar h2{
color:#F0F0F0 ;
font-size: 2.5rem;
 font-family: "Bebas Neue", sans-serif;
  font-weight: 400;
  font-style: normal;
}
/* PAGINA LOGIN */
.main-login{
    display: flex;
    justify-content: center;
    align-items: center;
}
.formulario {
  background-color: #ffffff;
  padding: 30px 40px;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 400px;
  gap: 15px;
  margin-top: 50px;
}
.formulario input{
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 8px;
  outline: none;
  font-size: 16px;
  font-family: Arial, Helvetica, sans-serif;
  transition: border-color 0.3s ease;
}
.formulario input:focus {
  border-color: #2C6E91;
}
.formulario label{
    font-weight: 600;
    margin-bottom: 5px;
    color: #2C6E91;
    font-size:20px
}
.formulario button {
  padding: 10px;
  background-color: #2C6E91;
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 16px;
  cursor: pointer;
  transition: background-color 0.3s ease;
}
.formulario button:hover{
    background-color: #3E92B6;
}

/* PAGINA HOME */
.main-home {
    display: flex;
    flex-direction: column;
    padding: 20px;
    gap: 30px;
    background-color: white;
}

/* SECCIONES */
#primera-seccion, #segunda-seccion {
    display: flex;
    gap: 20px;
}
.div-dinero-usuario{
    display: flex;
    flex-direction: column;
}
/* INFO USUARIO */
#div-mostrar-info {
    width: 35%;
    height: 30%;
    background-color: #D0E6EF;
    border: 1px solid #b3d1ff;
    border-radius: 10px;
    padding: 20px;
    font-family: "Bebas Neue", sans-serif;
    font-style: normal;

}

#div-mostrar-info h1 {
    color: #003366;
    margin-bottom: 10px;
    font-size: 3.2rem;
}

#div-mostrar-info h2 {
    font-size: 2rem;
}
#div-mostrar-info h3{
    font-size: 2rem;
    margin-left: 20px;
}
/* BOTONES FUNCIONALES */
#div-funcion-botones {
    height: 30%;
    width: 65%;
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

#div-funcion-botones button {
    flex: 1 1 20%;
    background-color: #005bb5;
    color: white;
    border: none;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 1.3rem;
    transition: background 0.3s;
    font-family: "Bebas Neue", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#div-funcion-botones button:hover {
    background-color: #1E4E72;
    transform: translateY(-4px);
}

#div-funcion-botones img {
    width: 60px;
    height: auto;
    margin-right: 10px;
}

/* FORMULARIOS */
#contenedor-formularios {
    flex: 1;
    background-color: #D0E6EF;
    border: 1px solid #ccc;
    border-radius: 10px;
    padding: 20px;
}

.formulario {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.formulario input {
    padding: 10px;
    border: 1px solid #bbb;
    border-radius: 5px;
    font-size: 1rem;
    font-family: Arial, Helvetica, sans-serif;
}

.formulario button {
    padding: 10px;
    background-color: #28a745;
    color: white;
    font-size: 1rem;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background 0.3s;
}

.formulario button:hover {
    background-color: #218838;
}

.oculto {
    display: none;
}

/* MOVIMIENTOS */
#mostrar-movimientos {
    flex: 1;
    background-color: #D0E6EF;
    border: 1px solid #a7d1f7;
    border-radius: 10px;
    padding: 20px;
}

#tus-movimientos {
    margin-top: 10px;
    max-height: 200px;
    overflow-y: auto;
    font-size: 0.95rem;
}
#tus-movimientos p {
    margin: 5px 0;
    padding: 5px;
    border-bottom: 1px solid #ccc;
}
#btn-limpiar-movimientos {
    margin-top: 10px;
    padding: 8px 12px;
    background-color: #d9534f;
    color: white;
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

#btn-limpiar-movimientos:hover {
    background-color: #c9302c;
}