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 {
  background-color: #e9ecef;
  margin-bottom: 60px;
}

.container {
  background-color: white;
  border-radius: 7px;
}

.container main.content{
  margin: 0 auto;
  padding: 3em;
}

.container main.content .hero{
  margin: 0 auto;
  min-width: 200px;
  max-width: 600px;
}


nav img.img-logo {
  height: 60px;
  width: 60px;
}

.progress-width{
  width: 75% !important;
}

@media (max-width: 768px) {
  .progress-width {
    width: 50% !important;
  }
}

@media (max-width: 575.98px) {
  .container {
    width: calc(100% - 10px) !important;
    max-width: none !important;
    margin: 5px auto !important;
    box-sizing: border-box !important;
    border-radius: 7px;
  }

    .container main.content{
      margin: 0 auto;
      padding: 1em;
    }
}

.form-check-label:hover {
  background-color: #e9ecef;
  border-radius: 7px !important;
}

/* Fixed footer adjustment for small screens */
@media (max-width: 575.98px) {
  html, body {
    height: 100%;
  }

  body {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  .container {
    display: flex;
    flex-direction: column;
    flex: 1 0 auto;
  }

  .container main.content {
    flex: 1 0 auto;
  }

  footer.fixed-bottom {
    position: static !important;
    width: 100%;
    margin-top: auto !important;
  }
}