* {
    margin: 0;
    padding: 0;
    font-family: Arial, Helvetica, sans-serif;
}

body {
    text-align: center;
    min-height: 100vh;
    margin-top: 3rem;
    background-color: #19191a;
    color: #ecdda2
}

h1 {
    font-weight: bold;
    font-size: 2.5rem;
}

h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: #19191a
}

button {
    height: 3.2rem;
    font-size: 1.2rem;
    padding: 0 0.5rem;
    border: 1px solid #19191a ;
    border-radius: 1rem;
    cursor: pointer;
    font-weight: bold;
    background-color: #c9b977;
    color: #19191a;
}

button:hover {
    color:#ecdda2;
    background-color: #19191a;
}

#bank-screen {
    background-color: #68686d;
    padding: 1.5rem 0;
    margin: 1.5rem 0;
    width: 75%;
    margin-left: auto;
    margin-right: auto;
    max-width:900px;
}

#withdraw-deposit {
    margin: 1rem 1.5rem;
    display: flex;
    align-items: center;
    gap: .3rem;
}

#insert-in-balance {
    flex: 1;
    /* margin-left: 1.5rem; */
    min-height: 3.2rem;
    border: 1px solid #19191a;
    border-radius: 1rem;
    padding: 0 1.5rem;
    font-size: 1.2rem;
    background-color: #ecdda2;

}

#btn-withdraw-deposit {
    /* padding-right: 1.5rem; */
    gap: 0rem;
}

#balance {
    margin: 0 1.5rem;
}

.btn-balance {
    width: 100%;
}

#account-status {
    font-size: 1.3rem;;
}

#repository-link a {
    color: white
}

.hide {
    display: none;
}

@media (max-width: 540px) {
    #withdraw-deposit {
        flex-direction: column;
        align-items: stretch;
    }
    
    #btn-withdraw-deposit {
        flex-direction: column;
        align-items: stretch;
        gap: 1rem;
    }
    #btn-withdraw-deposit button {
    width: 100%; /* Botões ocupam largura total */
  } 
  .btn-deposit {
    margin-top: 0.4rem;
  }
}

@media (min-width: 540px) and (max-width: 1100px) {
    #withdraw-deposit {
        flex-direction: column;
        align-items: stretch;
    }
    #btn-withdraw-deposit button {
    width: 49%; /* Botões ocupam largura total */
  }    
}


