@import "tailwindcss";
/* Default Styles */
* {
    font-family: "open sans" , sans-serif;
}
section {
    max-width: 1200px;
    margin-left:auto;
    margin-right: auto;
    padding: 10px 25px;
}
.logo {
    width: 100px;
}
button {
    cursor: pointer;
}
/* Same Styles */
#user-info-inputs input {
    border: 1px solid black;
    padding: 10px 20px;
    border-radius: 15px;
    font-size: 18px;
    -webkit-appearance: none;
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}
.app {
    display: none;
}
#user-info {
    /* display: none; */
}
.transaction {
    padding: 30px 40px;
    border-radius: 10px;
    text-align: center;
    cursor: pointer;
     i {
        font-size: 34px;
        margin-bottom: 10px;
     }
     h3 {
        font-size: 24px;
        font-weight: bolder;
     }
}
.transaction-pages {
    height: 100vh;
    width: 100%;
    display: none;
}
.transaction-page-heading {
    height: 40vh;
    display: flex;
    text-align: center;
    /* gap: 10px; */
    justify-content: space-between;
    h2 {
        font-size: 30px;
        font-weight: bolder;
        margin-left: 20px;
    }
    i {
        font-size: 40px;
        margin-top: 6px;
    }
}
@media screen and (max-width: 576px) {
    .transaction-page-heading h2 {
        font-size: 24px;
        margin-top: px;
    }
    .transaction-page-heading i {
        font-size: 24px;
    }
}

.transaction-page-input {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    justify-content: center;
}
.transaction-page-input input{
    border: 1px solid black;
    padding: 10px 40px;
    border-radius: 15px;
    font-size: 24px;
    outline: none;
    text-align: center;
}
.transaction-page-input select {
    background-color: black;
    color: white;
    padding: 10px 15px;
    border-radius: 5px;
    font-weight: bolder;
    font-size: 20px;
}
.transaction-page-input button {
    padding: 15px 30px;
    border-radius: 15px;
    font-size: 18px;
    font-weight: bolder;
    background-color: black;
    color: white;
}
.back-btn {
    cursor: pointer;
}
.historyDiv div {
    margin: 10px 0;
    background-color: rgb(0, 0, 0);
    color: white;
    padding: 10px 35px;
    border-radius: 10px;
}
.historyDiv h2 {
    font-size: 26px;
    font-weight: bold;
}
.historyDiv h3 {
    font-size: 22px;
    font-weight: bolder;
}
.historyDiv h4 {
    font-size: 18px;
    font-weight: lighter;
}
#successfulTransPopUp {
    display: none;
}
.animate-popup-start {
    animation: scale 0.2s ease-in;
}
@keyframes scale {
    0% {
        transform: scale(0);
    }
    100% {
        transform: scale(1);
    }
}