* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: Arial, sans-serif;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    background-color: #f8f9fa;
}

.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #f8f9fa;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 1000;
    font-size: 24px;
    color: white;
}

.sticky-banner {
    position: sticky;
    top: 0;
    background-color: #ffffff;
    color: white;
   
    text-align: center;
    z-index: 1000;
    width: 100%;
}
.back{
        background-color: #0074bd;
    color: #f3de1e;
    font-size: 15px;
    padding: 10px;
}


 .column {
           display: flex;
    flex-direction: row;
    align-items: center;
    margin: 20px;
    align-content: flex-end;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    text-align: center;
    color: #025e8c;
        }
        .text {
            margin: 10px 0; /* Space between the texts */
            font-size: 20px; /* Adjust font size as needed */
        }

.logo {
    font-size: 24px;
    font-weight: bold;
    color: white;
}

main {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-grow: 1; /* Allow main to grow and center content */
}

.form-container {
          background-color: #ffffff;
    margin-top: 0px;
    /* border-radius: 10px; */
    padding: 32px;
    width: 100%;
    /* max-width: 351px; */
    /* box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);*/
}

.debit-container {
    background-color: #d7eaf9;
    margin-top: 0px;
    border-radius: 10px;
    padding: 27px;
    width: 100%;
    max-width: 90%;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.user-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.user-form input {
  padding: 20px;
    border: solid 2px #000e5b;
    border-radius: 5px;
    width: 100%;
    box-shadow: 2px 3px 5px 0px #c3c3c3fc;
    font-size: 15px;
    font-weight: 600;
    font-family: system-ui;
}

.form-field {
    padding: 20px;
    border: solid 2px #000e5b;
    border-radius: 5px;
    width: 100%;
    box-shadow: 2px 3px 5px 0px #c3c3c3fc;
    font-size: 15px;
    font-weight: 600;
    font-family: system-ui;
  }

  .form-field:focus {
    border-color: #007BFF;
    outline: none;
  }
 .contact-container {
      display: flex;
      justify-content: center;
      align-items: center;
      font-family: Arial, sans-serif;
      font-size: 10px;
      color: #000;
      gap: 20px;
    margin-top: 20px;
    }

    .separator {
      border-left: 1px solid #000;
      height: 14px;
    }

    .contact-item {
      padding: 0 10px;
          font-family: system-ui;
    }


.user-form button {
  padding: 15px;
    border: none;
     border-radius: 5px;
    /* background-color: #FFC107; */
    color: white;
    cursor: pointer;
    transition: background-color 0.3s;
    margin-top: 10px;
    font-size: 15px;
    font-weight: 600;
    background-image: linear-gradient(45deg, #2849ff, #09165d);

}

.user-form button:hover {
    background-color: #004494;
}

.banner-container {
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 600px; /* Adjust to your preferred width */
    margin: auto;
}

.banner-slide {
    display: none; /* Hide all slides by default */
    width: 100%;
}

.banner-slide.active {
    display: block; /* Show the active slide */
}

.banner-slide img {
       width: 100%;
    height: auto;
    display: block;
}

  .footer {
      text-align: center;
      font-size: 13px;
      color: #555; /* lighter than pure black */
      margin-top: 40px;
    }

    .footer .links {
      margin-top: 6px;
    }

    .footer .links a {
      color: #1a0dab;
      text-decoration: none;
      margin: 0 6px;
      font-weight: 600;
    font-family: system-ui;
    }

    .footer .links a:hover {
      text-decoration: underline;
    }
    
    