html {
  font-size: 16px;
}

@media (min-width: 768px) {
  html {
    font-size: 18px;
  }
}

.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 {
    background: linear-gradient(to bottom, white 0%, #b3f0f0 100%);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: 100% 100%;
    min-height: 100vh;
    margin: 0;
    font-family: Arial, sans-serif;
    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;
}

.theme-gradient {
    background: linear-gradient(to bottom, white 100%, #b3f0f0 0%);
    min-height: 100vh;
}

.main-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

html, body {
    height: 100%;
    margin: 0;
}


.page-container {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
    margin-bottom: -60px;
   
}

.content {
    flex: 1;
    padding: 20px;
    overflow-y: auto;
}


.footer {
    color: white;
    text-align: center;
    padding: 15px;
}


