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-container {
    max-width: 550px;
    margin: 45px auto 0 auto;
}


.btn-teal {
    background-color: #17a0a0;
    color: #fff;
}

.btn-custom {
    background-color: #013237;
    color: #fff;
}
.btn:hover {
    color: #212529;
    text-decoration: none;
    background-color:inherit;
}

.loader {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    justify-content: center;
    align-items: center;
    background: rgb(0, 0, 0, 35%);
    z-index: 999999;
}

.loader.active {
    display: flex;
}

}

.noscroll {
    overflow: hidden;
}

