* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.titulo {
    font-size: 1em;
    text-align: center;
    margin-bottom: 10px;
    color: white;
}


.peso-clp label,
.input-monto label,
.moneda-convertir label,
.boton button,
#resultado
{
    font-size: 1rem;
    color: white;
}   


.container {
    width: 100%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap:  30px;
    border: #fff;
    background-color: black;
}

.card {
    width: 400px;
    height: 300px;
    background-color: #616161;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

.peso-clp {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.input-monto {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.moneda-convertir {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.boton {
    display: flex;
    align-items: center;
    justify-content: center;

}

#btnBuscar  {
    padding: 10px 20px;
    font-size: 1rem;
    border: none;
    border-radius: 6px;
    background-color: #007BFF;
    color: #fff;
    cursor: pointer;
    width: 100%;
}

.input-monto input,
.select-moneda select
{
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}


#grafico {
  width: 100%;
  height: 450px !important;
  background-color: white;
}


#monto,
#moneda {
  width: 100%;
  padding: 10px;
  font-size: 1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  box-sizing: border-box;
}