.bankdetail {
    border: 02px solid black;
    border-radius: 05px;
    text-align: center;
    font-size: 20px;
    margin: 50px;

    h1 {
        margin: 20px;
    }

    input {
        height: 50px;
        width: 350px;
        text-align: center;
        font-size: 20px;
    }

    #submit {
        height: 50px;
        width: 350px;
        border: 0px;
        background-color: rgba(140, 156, 156, 0.733);
        transition: all 0.5s;
        margin-bottom: 20px;
        cursor: pointer;
    }

    #submit:hover {
        transform: scale(1.05);
    }
}

#deposit {
    text-align: center;
    border: 02px solid black;
    width: 50%;
    padding: 1%;

    input {
        height: 50px;
        width: 350px;
        text-align: center;
        font-size: 20px;
    }

    button {
        height: 50px;
        width: 350px;
        font-size: 20px;
        border: 0px;
        background-color: rgba(140, 156, 156, 0.733);
        transition: all 0.5s;
        margin-bottom: 20px;
        cursor: pointer;
    }

    button:hover {
        transform: scale(1.05);
    }
}