/* navbar */
#deposit nav {
    display: flex;
    align-items: center;
    background-color: lightblue;
    border-bottom: 1px solid black;
}

#deposit nav div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

#deposit nav div h1 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 20px;
    margin-left: 10px;
}

#deposit nav div h1 sub {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

#deposit nav div button {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    height: 40px;
    margin: 10px;
    border: 1px solid black;
    border-radius: 10px;
}

#deposit nav div button:active {
    background-color: rgb(221, 220, 220);
}

.main {
    padding-top: 3dvh;
    margin: 10px;
}

.main h3 {
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.deposit-terminal {
    border: 1px solid black;
    border-radius: 10px;
    padding: 10px;
    background-color: rgb(223, 245, 252);

    display: flex;
    flex-direction: column;
}

.deposit-terminal input {
    width: 50dvw;
    padding: 10px;
    font-family: "Archivo Black", sans-serif;
    font-weight: 400;
    font-style: normal;
    border: 1px solid black;
    background-color: white;
    border-radius: 10px;

    padding-left: 12px;
    padding-right: 12px;

    box-sizing: border-box;
}

.rows {
    border: 1px solid black;
    border-radius: 10px;
    margin: 5px;
    padding: 10px;
}