.sidebar {
  display: flex;
  flex-direction: column;
  background-color: hsl(203, 40%, 20%);
  padding: 5px;
}

.sidebar > header > a {
  padding: 5px;
  font-size: 1rem;
  color: hsl(32, 100%, 50%);
  align-items: center;
  justify-content: center;
  text-decoration: none;
  display: flex;
  gap: 5px;
}
.sidebar > header > a h1 {
  margin: 0px;
}
.sidebar > header > a .logo {
  width: 2.5rem;
}

.sidebar > .menu-container {
  margin: 20px 0px;
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 100%;
}

.sidebar > .menu-container > .btn {
  padding: 5px;
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 5px;
}
.sidebar > .menu-container > .btn img {
  width: 1.8rem;
}
.sidebar > .menu-container > .btn span {
  font-weight: 700;
}

.sidebar > .menu-container > .collapse.show,
.sidebar > .menu-container > .collapsing {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin: 0px 5px 15px 30px;
}
.sidebar > .menu-container > .collapse.show a,
.sidebar > .menu-container > .collapsing a {
  color: hsl(0, 0%, 100%);
  text-decoration: none;
  padding: 5px 5px 5px 10px;
  font-size: 1rem;
}

.profile-section {
  background-color: hsl(203, 40%, 16%);
  padding: 15px;
  text-align: center;
}
.profile-section h5 {
  color: hsl(0, 0%, 100%);
  margin: 0;
  font-size: 16px;
}
.profile-section p {
  margin: 0;
  font-size: 14px;
}
.profile-section .logout-btn {
  display: block;
  width: 100%;
  margin-top: 15px;
  padding: 5px 0;
  background-color: hsl(32, 100%, 50%);
  color: hsl(32, 100%, 10%);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  text-decoration: none;
}
.profile-section .logout-btn:hover {
  background-color: hsl(32, 100%, 57.5%);
}

main {
  padding: 30px 10px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  min-height: 100%;
}
main > h2 {
  margin-left: 20px;
  margin-right: auto;
}
main hr {
  width: 100%;
  border: 2px solid hsl(32, 100%, 50%);
}
main section {
  height: 100%;
}
main .link-primary {
  color: hsl(32, 100%, 50%) !important;
}
main .link-primary:hover {
  color: hsl(32, 100%, 42.5%) !important;
}

section.center {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

html,
body {
  width: 100%;
  min-height: 100dvh;
  height: 100%;
  background-color: hsl(0, 0%, 10%);
}

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

.card {
  border-radius: 8px;
  margin: 24px 0px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form.border-primary {
  border: 1px solid hsl(32, 100%, 50%) !important;
}

.btn-primary {
  background-color: hsl(32, 100%, 50%) !important;
  border: none;
  color: hsl(32, 100%, 10%);
}/*# sourceMappingURL=Style.css.map */