body {
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
    margin: 0;
    padding: 0;
  }
  
  .container {
    max-width: 400px;
    margin: 50px auto;
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }
  
  .logo {
    display: block;
    margin: 0 auto 20px;
  }
  
  .form-group {
    margin-bottom: 20px;
  }
  
  label {
    display: block;
    margin-bottom: 5px;
  }
  
  input[type="text"],
  input[type="password"],
  button {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 3px;
  }
  
  button {
    background-color: black;
    color: white;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .cont {
    display: block;
  }
  .contOff {
    display: none;
  }
  .sub {
    display: none;
  }
  .subOn {
    display: block;
  }
  
  /* button:hover {
    background-color: darkgreen;
  } */
  
  .forgot-password {
    display: block;
    text-align: right;
    margin-top: 5px;
  }
  
  @media (max-width: 768px) {
    .container {
      max-width: 90%;
    }
  }

  .hidden {
    display: none;
  }
  .fade {
    display: none;
    opacity: 0.5;
    pointer-events: none;
    transition: opacity 0.5s ease;
  }



  /* dashboard */
  .mainDiv {
    background-color: white;
    height: 100vh;
  }
  .subDiv {
    background-color: #013c4c;
    width: 100%;
    height: 50vh;
    /* border-radius: 0 0 20px 20px; */
    border-radius:0 0 20px 20px;
    position: relative;
    padding: 2% 5%;
  }
  .clInfo {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .clInfo h3 {
    color: white;
    font-size: 27px;
  }
  .clInfo img {
    width: 35px;
    height: 35px;
  }
  .acct {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
  }
  .bal {
    background-color: #90dbba;
    display: flex;
    justify-content: space-between;
    padding: 1% 2%;
    align-items: center;
    border-radius: 12px;
    margin-top: -3%;
  }
  .bal p {
    text-align: left;
    line-height: 1.3;
    font-size: 17px;
  }
  .TrDePa {
    display: flex;
    justify-content: space-between;
  }
  .tranfer {
    background-color: #90dbba;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 23%;
    margin: 10% 0;
    padding: 10px 0 0 0;
    border-radius: 10px;
  }
  .tranfer img {
    width: 25px;
    margin-bottom: -10px;
  }
  .tranfer p {
    font-size: 13px;
    /* font-weight: bold; */
    color: #013c4c;
  }
  .details {
    background-color: white;
    display: flex;
    justify-content: left;
    align-items: flex-start;
    border-radius: 10px;
    position: absolute;
    height: 50vh;
    width: 90vw;
    top: 32%;
    right: 5%;
    padding: 7%;
  }
  .noDetail {
    display: none;
  }
  .subDetails {

  }
  .subDetails p {
    text-align: left;
    font-weight: bolder
  }
  .subDetails span{
    font-weight: lighter;
  }
  .transaction {
    background-color: white;
    height: 50vh;
    overflow-y: scroll;
    padding: 2% 5%;
  }
  .traList {

  }
  .topTra {
    display: flex;
    justify-content: space-between;
  }
  .traSubList {
    display: flex;
    justify-content: space-between;
  }
  .traSubList p {
    font-size: 13px;
    text-align: left;
    font-weight: bold;
  }
  .traSubList span {
    font-weight: 100;
  }

  /* alert box */
  .alertBox {
    background-color: red;
    padding: 10%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100%;
    top: 5%;
  }
  .displayNone {
    display: none;
  }
  .alertBox img {
    width: 30px;
    position: absolute;
    top: 5px;
    right: 5px;
  }
  .alertBox p {
    color: white;
    font-size: 14px;
  }
  .alertBox a {
    background-color: #ffcccc;
    padding: 5px 10px;
    font-size: 16px;
  }


  #myDiv {
    display: none; /* Hidden by default */
    opacity: 0; /* Fully transparent */
    transform: translateY(-10px); /* Shifted slightly upwards */
    transition: opacity 0.3s ease, transform 0.3s ease; /* Smooth transition */
    position: absolute;
    background-color: white;
    width: 30%;
    /* padding: 2% 0; */
    color: #013c4c;
    right: 0;
  }

  #myDiv.divOn {
      display: block; /* Visible when toggled */
      opacity: 1; /* Fully visible */
      transform: translateY(0); /* No vertical shift */
  }


  