.autofill-trap {
  position: fixed !important;
  left: -10000px !important;
  top: -10000px !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  opacity: 0 !important;
  pointer-events: none !important;
}

.login label.remember-session {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 16px 0 20px;
  color: var(--m);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}

.login .remember-session input {
  appearance: none;
  -webkit-appearance: none;
  flex: 0 0 20px;
  width: 20px;
  height: 20px;
  margin: 0;
  padding: 0;
  border: 2px solid #7b8783;
  border-radius: 4px;
  background-color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 12px 12px;
  cursor: pointer;
}

.login .remember-session input:checked {
  border-color: var(--g);
  background-color: var(--g);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3E%3Cpath fill='none' stroke='white' stroke-linecap='round' stroke-linejoin='round' stroke-width='2.4' d='m3 8 3 3 7-7'/%3E%3C/svg%3E");
}

.login .remember-session input:focus-visible {
  outline: 3px solid rgba(15, 91, 77, .22);
  outline-offset: 2px;
}

.password-field {
  position: relative;
}

.password-field input {
  padding-right: 48px;
}

.login button.password-toggle {
  position: absolute;
  top: 7px;
  right: 1px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 7px;
  background: transparent;
  color: #66716e;
}

.login button.password-toggle:hover {
  background: #f0f5f2;
  color: var(--g);
}

.password-toggle svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.password-toggle .eye-closed,
.password-toggle.is-visible .eye-open {
  display: none;
}

.password-toggle.is-visible .eye-closed {
  display: block;
}

.dashboard aside nav {
  gap: 7px;
  margin-top: 30px;
}

.dashboard aside nav button {
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  font-size: 15px;
}

.dashboard aside nav button:hover {
  background: rgba(255, 255, 255, .07);
  color: #fff;
}

.dashboard aside nav button.active {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .12);
}

.dashboard aside nav button[data-tab="perfil"] {
  order: 1;
}

.dashboard aside nav button[data-tab="catalogo"] {
  order: 2;
}

.dashboard aside nav button[data-tab="reservas"] {
  order: 3;
}

.dashboard aside nav button[data-tab="empresa"] {
  order: 4;
}

.sidebar-actions {
  display: grid;
  gap: 8px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, .12);
}

.sidebar-actions a,
.sidebar-actions button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 44px;
  width: 100%;
  margin: 0;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 10px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
}

.sidebar-actions a {
  border-color: rgba(217, 243, 107, .22);
  background: rgba(217, 243, 107, .08);
  color: #d9f36b;
}

.sidebar-actions a:hover {
  background: rgba(217, 243, 107, .14);
}

.sidebar-actions #logout {
  border-color: rgba(255, 255, 255, .08);
  background: rgba(255, 255, 255, .05);
  color: #c9ddd8;
}

.sidebar-actions #logout:hover {
  border-color: rgba(255, 107, 74, .3);
  background: rgba(255, 107, 74, .1);
  color: #ffb5a4;
}
