.section-light {
  display: none !important;
}

.page-header {
  background: #00150f;
  color: white;
  height: 260px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.page-header-breadcrumbs {
  font-size: 18px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.page-header-breadcrumbs a {
  color: var(--Green-600, #00a676);
  text-decoration: none;
}

.page-header h2 {
  font-size: 48px;
}

.page-header svg {
  position: absolute;
  z-index: 10;
  right: 0;
  top: -50%;
}

.page-container {
  padding-top: 100px;
  padding-bottom: 100px;

  display: flex;
  gap: 100px;
  position: relative;
  z-index: 10;
}
.left-side {
  flex: 2;
  max-width: 40%;
  display: flex;
  align-items: center;
}
.left-side img {
  width: 100%;
  height: auto;
}

.left-side-header {
  font-size: 32px;
  font-weight: 600;
  color: #0c263a;
}

.dark-mode .left-side-header {
  color: white;
}

.left-side-header span {
  color: #4ecca3;
}

.social-row {
  margin-top: 48px;
  display: flex;
  gap: 16px;
}

.social-circle {
  border: 2.4px solid #f5f7fa;
  color: #0c263a;
  display: flex;
  width: 48px;
  height: 48px;
  justify-content: center;
  align-items: center;
  border-radius: 100%;
  transition: 0.3s all;
}
.dark-mode .social-circle {
  color: #f5f7fa;
}
.social-circle:hover {
  border-color: #00a676;
  color: #00a676;
}

.right-side {
  flex: 3;
  display: flex;
  flex-direction: column;
}

label {
  margin-top: 24px;
  font-size: 18px;
  margin-bottom: 8px;
}
.dark-mode label {
  color: #eee;
}

input,
textarea {
  padding: 18px 20px;
  border: 1px solid #e6edfb;
  border-radius: 8px;
}

.dark-mode input,
.dark-mode textarea {
  background: rgb(29, 30, 36);
  color: white;
  border: 0;
}

button[type="submit"] {
  padding: 18px 40px;
  border-radius: 8px;
  background: #00d094;
  color: #0c263a;
  margin-top: 32px;
  border: 0;
}

.body-content {
  position: relative;
  overflow: hidden;
}

.dark-mode .body-content {
  background: rgb(34, 38, 47);
}

.bg-svg {
  position: absolute;
  right: 0;
  bottom: 0;
  display: none;
}
form {
  position: relative;
}
form img {
  position: absolute;
  top: 50px;
  right: 103%;
  width: 104px;
  height: auto;
  z-index: 15;
}

#modeToggle {
  width: 46px;
  height: 46px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid black;
  border-radius: 10px;
  cursor: pointer;
}
#modeToggle svg {
  width: 24px;
  height: 24px;
}

.dark-mode .dark-icon {
  display: none;
}

.light-icon {
  display: none;
}

.dark-mode .light-icon {
  display: unset;
}

.login-logout {
  display: flex;
  flex-direction: row-reverse;
  gap: 5px;
}

@media only screen and (max-width: 768px) {
  .page-container {
    flex-direction: column;
    gap: 32px;
  }
  .left-side {
    max-width: 100%;
  }
  form img {
    display: none;
  }
  .left-side img {
    display: none;
  }
}
