body {
  display: flex;
  overflow-x: hidden;
}

html {
  background-color: #F6F7F8;
}

* {
  box-sizing: border-box;
  margin: 0;
  font-family: Inter;
}


main {
  display: flex;
  width: calc(100% - 232px);
  flex-direction: column;
}

.d_none {
  display: none !important;
}

.width-100 {
  width: 100% !important;
}

.rotate-warning-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0.85);
  color: #fff;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 30px;
  font-size: 1.4em;
  font-family: 'Inter', sans-serif;
  backdrop-filter: blur(5px);
  box-shadow: inset 0 0 20px rgba(255, 255, 255, 0.1);
}

.rotate-warning-overlay img {
  width: 64px;
  height: 64px;
  margin-bottom: 20px;
  filter: brightness(0) invert(1);
  opacity: 1;
}

.rotate-Text{
  font-family: Inter;
  font-size: 30px;
  font-weight: 400;
  padding: 20px;
}
/* Header */

header {
  background-color: #ffffff;
  padding-left: 80px;
  padding-right: 48px;
  height: 96px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: 0px 1px 5px #80808069;
  z-index: 30;
  box-sizing: border-box;
  font-family: Inter;
}

.header-right-side {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-right-side img {
  width: 32px;
  object-fit: contain;
}

.user-logo-text {
  font-weight: bold;
  color: #29abe2;
  font-size: 24px;
}

.user_circle {
  width: 56px;
  height: 56px;
  border: 3px solid #2a3647;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.user_circle:hover {
  background-color: #0c2e621f;
}

.logo-small {
  display: none;
}

.logo-small-repeat {
  display: inherit;
}

.d-none {
  display: none !important;
}

.d-block {
  display: block !important;
}

.d-opacity {
  opacity: 1 !important;
}

/* Burger menu */
.burger-menu {
  width: 150px;
  position: absolute;
  top: 96px;
  right: 8px;
  background-color: #2a3647;
  border-radius: 20px 0 20px 20px;
  padding: 16px;
  flex-direction: column;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease;
  display: flex;
}

.burger-menu.visible {
  opacity: 1;
  pointer-events: auto;
}

.burger-menu a {
  color: #cdcdcd;
  text-decoration: none;
  padding: 16px 0;
  width: 100%;
  text-align: center;
  cursor: pointer;
  user-select: none;
}

.burger-menu a:hover {
  background-color: #091931;
  color: white;
  border-radius: 20px;
}

/* Navbar */
.navbar-section {
    background-color: #2A3647;
    width: 232px;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    z-index: 10;
    text-decoration: none;
}

.navbar {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.navbar-links {
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  text-decoration: none;
}

.navbar-links a:hover {
    background-color: #2A3D59;
    text-decoration: none;
}

.navbar-logo {
  width: 120px;
  margin-top: 64px;
  margin-bottom: 30px;
}

.navbar-link span {
    text-decoration: none;
    color: white;
    font-family: Inter;
}

.navbar-link {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    cursor: pointer;
    width: 100%;
    padding: 8px 0;
    margin: 8px 0;
    opacity: 0.8;
    text-decoration: none;
}

.navbar-link img {
  width: 24px;
  object-fit: contain;
  margin-right: 16px;
  margin-left: 56px;
  filter: brightness(0) saturate(100%) invert(99%) sepia(1%) saturate(2%) hue-rotate(94deg) brightness(106%) contrast(100%);
}
.active-menu {
  background-color: #091931;
  opacity: 1 !important;
}

.policy-section {
  display: flex;
  flex-direction: column;
  margin-bottom: 100px;
  width: 100%;
  align-items: center;
  text-decoration: none;
}

.privacy-legal {
  text-decoration: none;
  color: rgba(168, 168, 168, 1);
  font-family: Inter;
  height: 35px;
  align-items: center;
  gap: 10px;
  font-weight: 400;
  font-size: 16px;
  width: 100%;
  display: flex;
  justify-content: center;
}

.privacy-legal:hover {
  color: rgba(41, 171, 226, 1);
  text-decoration: none;
}

.content {
  flex: 1;
  box-sizing: border-box;
  max-width: 1920px;
}

.visible {
  opacity: 1 !important;
}

.error-border {
  border: 1px solid red !important;
}

.error-label-border {
  border: 1px solid red !important;
}

.correct-input {
  border: 1px solid green !important;
}

.poppins {
  color: red!important;
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
}

@media (max-width: 900px) {
  main {
    width: 100%;
    margin-bottom: 80px;
    margin-top: 96px;
  }

  .logo-small {
    display: inherit;
  }

  .header-left-side {
    display: none;
  }

  header {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    padding-left: 32px;
    padding-right: 32px;
  }

  .burger-menu {
    position: fixed;
  }

  .navbar-section {
    position: fixed;
    bottom: 0;
    right: 0;
    left: 0;
    height: 80px;
    width: 100%;
    min-height: unset;
  }

  .navbar-logo {
    display: none;
  }

  .navbar-links {
    flex-direction: row;
    justify-content: space-around;
  }

  .navbar-link {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 0;
    width: 80px;
    height: 80px;
    padding: 0;
  }

  .navbar-link img {
    margin: 0;
    margin-bottom: 8px;
  }

  .policy-section {
    display: none;
  }

  .active-menu {
    border-radius: 20px;
  }
}
