html,
body {
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
}

.navbar {
  background-color: #003864; /* Your desired color */
}

nav .navbar-nav li a {
  color: white !important;
}

.content {
  flex: 1;
}

.footer {
  background-color: #f8f9fa;
  padding: 10px 0;
}

.center-team {
  text-align: center;
}

.center-team img {
  display: inline-block;
  height: 400px;
}

.text-big {
  font-size: 18px;
}

.padtop {
  padding-top: 30px;
}

.login-form {
  width: 100%;
  max-width: 330px;
  padding: 15px;
  margin: auto;
}

.login-form .checkbox {
  font-weight: 400;
}

.login-form .form-control {
  position: relative;
  box-sizing: border-box;
  height: auto;
  padding: 10px;
  font-size: 16px;
}

.login-form .form-control:focus {
  z-index: 2;
}

.login-form input[type="email"] {
  margin-bottom: -1px;
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
}

.login-form input[type="password"] {
  margin-bottom: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}

.form-step {
  display: none;
}
.form-step-active {
  display: block;
}

.section-title {
  font-weight: bold;
  margin-top: 20px;
  margin-bottom: 10px;
}

.inline-inputs {
  display: flex;
  align-items: center;
}
.inline-inputs input[type="date"] {
  margin-left: 5px;
  margin-right: 5px;
}

.form-check-input {
  margin-top: 0.5rem; /* Adjust alignment with the label */
}

.custom-file-input:lang(en)~.custom-file-label::after {
  content: "Browse";
}