.apex-body {
  background-color: #0A0A0A;
  font-family: "Inter", sans-serif;
  color: #8A8A93;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5 {
  font-family: "Satoshi", sans-serif;
  font-weight: 700;
  color: #F5F5F7;
}

a {
  color: #6D28D9;
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: #5B21B6;
}

.sidebar {
  width: 260px;
  background-color: #0A0A0A;
  border-right: 1px solid #2D2D33;
  height: 100vh;
  position: sticky;
  top: 0;
  padding: 1.5rem 1rem;
  display: flex;
  flex-direction: column;
}

.sidebar .nav-link {
  color: #8A8A93;
  display: flex;
  align-items: center;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  margin-bottom: 0.25rem;
  transition: background-color 0.2s ease, color 0.2s ease;
}
.sidebar .nav-link i {
  margin-right: 1rem;
  width: 20px;
  height: 20px;
}
.sidebar .nav-link:hover {
  background-color: #1E1E23;
  color: #F5F5F7;
}
.sidebar .nav-link.active {
  background-color: #6D28D9;
  color: #F5F5F7;
  font-weight: 600;
}

.main-content {
  background-color: rgb(15.1, 15.1, 15.1);
}

.auth-body {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.auth-container {
  width: 100%;
  max-width: 420px;
  padding: 1rem;
}

.auth-card.card {
  background-color: #1E1E23;
  border: 1px solid #2D2D33;
  border-radius: 12px;
}

.btn-primary-custom {
  background-color: #6D28D9;
  border: none;
  color: #F5F5F7;
  font-family: "Inter", sans-serif;
  font-weight: 600;
  padding: 0.75rem 1.5rem;
  border-radius: 8px;
  transition: background-color 0.2s ease;
}
.btn-primary-custom:hover {
  background-color: #5B21B6;
}

.form-control {
  background-color: rgb(22.75, 22.75, 22.75);
  border: 1px solid #2D2D33;
  color: #F5F5F7;
}
.form-control:focus {
  background-color: rgb(22.75, 22.75, 22.75);
  border-color: #6D28D9;
  box-shadow: 0 0 0 3px rgba(109, 40, 217, 0.25);
  color: #F5F5F7;
}

.account-card.card {
  background-color: #1E1E23;
  border: 1px solid #2D2D33;
  border-radius: 12px;
  transition: border-color 0.2s ease, transform 0.2s ease;
  color: #F5F5F7;
}
.account-card.card:hover {
  border-color: #6D28D9;
  transform: translateY(-4px);
}
.account-card.card .card-title {
  font-family: "Satoshi", sans-serif;
  font-weight: 500;
  color: #F5F5F7;
}

/*# sourceMappingURL=main.css.map */
