html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

html {
  position: relative;
  min-height: 100%;
}


.btn:focus,
.btn:active:focus,
.btn-link.nav-link:focus,
.form-control:focus,
.form-check-input:focus {
  box-shadow: 0 0 0 0.1rem white, 0 0 0 0.25rem #258cfb;
}



/* 
.form-floating>.form-control-plaintext::placeholder,
.form-floating>.form-control::placeholder {
  color: var(--bs-secondary-color);
  text-align: end;
}

.form-floating>.form-control-plaintext:focus::placeholder,
.form-floating>.form-control:focus::placeholder {
  text-align: start;
} */

header {
  height: 100px;
}

main {
  /* max-width: 768px !important; */
  margin-left: auto;
  margin-right: auto;
}

.blue-box {
  background-color: #0070d5;
  padding: 1rem;
  border-radius: 1rem;
  color: #fff;
  margin-left: auto;
  margin-right: auto;

}

.bank-list-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;

}

.bank-button {
  margin-right: 1rem;
  border: none;
  background: #fff;
  border-radius: 8px;
  padding: 1rem;
}

.bank-button>img {
  max-width: 200px;
}

footer {
  background-color: #0070d5;
  color: #fff;
  padding: 1rem;

}



@media only screen and (min-width: 550px) {
  header .logo {
    height: auto;
  }
}


.btn-cta {
  background: rgb(76 175 80);
  color: #fff;
}

.form-check-input:checked[type=radio] {
    --bs-form-check-bg-image: none !important; 
    background-color: green;
    color: green;
}