* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Segoe UI', sans-serif;
  background-color: #26282C;
  color: white;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  display: flex;
  flex-direction: row;
  width: 100%;
  max-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  padding: 0;
}

.left-panel, .right-panel {
  flex: 1;
}

.left-panel {
  background: url('background-pattern.png') no-repeat center center;
  background-size: cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.left-panel p {
  color: #F0F0F2;
  text-align: center;
  font-family: "Helvetica Neue LT Pro", sans-serif;
  font-size: 24px;
  line-height: 40px;
}

.logo img {
  max-height: 60px;
  margin-bottom: 20px;
}

.question {
  font-style: italic;
  font-weight: 300;
}

.instruction {
  font-weight: 500;
}

.right-panel {
  display: flex;
  width: 50%;
  height: 690px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 48px;
  flex-shrink: 0;
  background: rgb(38 40 44 / 0%);
  backdrop-filter: blur(5px);
  padding: 0 50px;
}

.right-menus {
 display: flex;
padding: 16px 0px;
flex-direction: column;
align-items: flex-start;
gap: 16px;
align-self: stretch;
border-radius: 8px;
border: 1px solid #B9BCC3;
background: var(--Color-Main, #26282C);
}

.profile-option {
    display: flex;
    width: 100%;
    height: 90px;
    padding: 16px 64px;
    align-items: center;
    gap: 16px;
    background: linear-gradient(180deg, #26282C 0%, #2B2D31 50%, #26282C 100%);
    margin: 0;
}
.profile-img {
  width: 60px;            /* ajusta al tamaño del círculo */
  height: 60px;
  background-color: #f1f1f3; /* el fondo blanco/gris claro */
  border-radius: 50%;     /* esto lo hace circular */
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;       /* por si la imagen sobresale */
}

.profile-img img {
  width: 40px;            /* o usa max-width: 60%; */
  height: 40px;
  object-fit: contain;
}

.profile-option:hover {
  background: linear-gradient(180deg, #535760 0%, #575C65 50%, #535760 100%);
}

.profile-option img {
  width: 32px;
  height: 32px;
}

.profile-option span {
  font-size: 20px;
  font-weight: 500;
  color: #ffffff;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    flex-direction: column;
  }

  .left-panel, .right-panel {
    padding: 30px 20px;
    text-align: center;
  }

  .left-panel {
    background: url(background-pattern.png) no-repeat center center;
    background-size: cover;
    display: flex;
    flex-direction: column; /* ← corregido */
    justify-content: center;
    text-align: center;
  }

  .right-panel {
    align-items: center;
    width: 100%;
  }
}

.left-panel {
  position: relative;
  overflow: hidden;
}

.bg-svg {
  position: absolute;
  z-index: 0;
  pointer-events: none;
  opacity: 0.7;
  max-width: none;
}

/* Ajusta según tus necesidades visuales */
.svg1 {
  width: 469.463px;
  height: 400px;
  flex-shrink: 0;
  top: 0px;
  left: 0;
}

.svg2 {
 width: 914px;
 height: 689px;
 flex-shrink: 0;
 left: 75px;
}

/* Eleva el contenido sobre los SVGs */
.left-panel > *:not(.bg-svg) {
  position: relative;
  z-index: 1;
}
