html {
  font-size: 14px;
}

@media (min-width: 768px) {
  html {
    font-size: 16px;
  }
}

.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;
}

html {
  position: relative;
  min-height: 100%;
}

/*body {
  margin-bottom: 60px;
}*/

.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;
}
.feathery-container {
    min-height: 100vh;
    width: 100%;
    overflow-y: auto;
}

.container {
    max-width: 100% !important;
}

/* Landing Page */
.landing-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #272d63;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    z-index: 1000;
}

.landing-card {
    background-color: #F8F3EC;
    max-width: 850px;
    width: 100%;
    padding: 40px 60px;
    border-radius: 4px;
    max-height: 90vh;
    overflow-y: auto;
}

.landing-title {
    text-align: center;
    font-weight: bold;
    margin-bottom: 20px;
    color: #000;
}

.landing-section-heading {
    font-weight: bold;
    margin-top: 18px;
    margin-bottom: 6px;
    color: #000;
}

.landing-card p {
    margin-bottom: 10px;
    color: #000;
    line-height: 1.6;
}

.landing-card a {
    color: #0077cc;
}

.landing-card a:hover {
    color: #005999;
}

.landing-button-container {
    text-align: center;
    margin-top: 30px;
}

.landing-start-button {
    display: inline-block;
    background-color: #272d63;
    color: #fff !important;
    padding: 12px 80px;
    border: none;
    border-radius: 25px;
    font-size: 18px;
    text-decoration: none;
    cursor: pointer;
}

.landing-start-button:hover {
    background-color: #1e2350;
    color: #fff !important;
    text-decoration: none;
}