body {
  font-family: "Montserrat", sans-serif;
  background-color: #FAFAFA;
}

/* Links styling */
a, a:visited, a:hover, a:active, a:focus {
  text-decoration: none;
  outline: none;
}

a {
  color: #EE4267;
}
a:hover, a:active, a:focus {
  color: #09A1A1;
}

.link-primary, .link-primary:visited {
  color: #EE4267 !important;
}
.link-primary:hover, .link-primary:active, .link-primary:focus, .link-primary:visited:hover, .link-primary:visited:active, .link-primary:visited:focus {
  color: #09A1A1 !important;
}

/* Input Field styling */
input, select, textarea, .form-control, .form-select {
  outline: none;
  border: 1px solid #EEEEEE;
  box-shadow: 0 0 0 0px;
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 25px;
  font-size: 14px;
}
input:focus, select:focus, textarea:focus, .form-control:focus, .form-select:focus {
  border: 1px solid #09A1A1;
  box-shadow: 0 0 0 2px rgba(9, 161, 161, 0.1);
}

input[type=password] {
  letter-spacing: 2px;
}

input[type=checkbox], input[type=radio] {
  outline: none;
  box-shadow: 0 0 0 0px;
}
input[type=checkbox]:focus, input[type=radio]:focus {
  border: 1px solid #09A1A1;
  outline: none;
  box-shadow: 0 0 0 2px rgba(9, 161, 161, 0.1);
}
input[type=checkbox]:checked, input[type=radio]:checked {
  background-color: #09A1A1;
  border: 1px solid #09A1A1;
  color: #09A1A1;
}

.form-label {
  font-size: 14px;
  font-weight: 500;
}

.form-check {
  clear: both;
  margin-bottom: 10px;
  padding-left: 0px;
  font-size: 12px;
}
.form-check .form-check-label {
  padding: 12px 25px;
  padding-left: 50px;
  border: 1px solid #EEEEEE;
  border-radius: 10px;
  display: block;
  margin-left: -5px;
}
.form-check .form-check-label:hover {
  border: 1px solid #09A1A1;
}
.form-check .form-check-input {
  padding: 9px;
  margin: unset;
  margin-top: 12px;
  margin-left: 10px;
  margin-right: -50px;
}
.form-check input.form-check-input:checked + .form-check-label {
  border: 1px solid #09A1A1;
}

/* Layout styling */
.fixed-navigation {
  position: fixed;
  height: 100%;
  top: 0px;
  left: 0px;
  overflow: auto;
  width: inherit;
  background-color: #FFFFFF;
  border-right: 1px solid #EEEEEE;
  box-shadow: rgba(9, 161, 161, 0.1) 2px 2px 5px;
  min-height: 100vh;
}

.main-content {
  padding: 10px 0px;
}

.content-container-box {
  border: 1px solid #EEEEEE;
  border-radius: 15px;
  background-color: #FFFFFF;
  padding: 15px;
  margin-bottom: 15px;
}

.text-primary-foreground {
  color: #EE4267;
}

.text-accent-foreground {
  color: #09A1A1;
}

.text-muted-foreground {
  color: #6B7280;
}

footer {
  margin-top: auto;
  background-color: #ffffff;
  min-height: 5vh;
}

/* Progress bar */
.progress {
  border-radius: 0.4rem;
  height: 1.2rem;
}
.progress .progress-bar {
  background-color: #EE4267;
  font-size: 12px;
  font-weight: 500;
}
