.not-logged {
  padding: 1.25rem;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.06);
  max-width: 720px;
  margin: 1.25rem auto;
  color: #222;
}
.not-logged__inner {
  text-align: center;
}
.not-logged__title {
  margin-bottom: 0.25rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f1f1f;
}
.not-logged__text {
  margin-bottom: 0.75rem;
  color: #444;
}
.not-logged__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  margin-bottom: 0.5rem;
  flex-wrap: wrap;
}
.not-logged__btn {
  min-width: 110px;
}
.not-logged__note {
  font-size: 0.9rem;
  color: #666;
}

.button {
  display: inline-block;
  padding: 0.5rem 0.9rem;
  border-radius: 6px;
  text-decoration: none;
  font-weight: 600;
  transition: transform 120ms ease, box-shadow 120ms ease;
}
.button--primary {
  background: linear-gradient(90deg, #ff66b3, #8a2be2);
  color: #fff;
  box-shadow: 0 6px 18px rgba(138, 43, 226, 0.12);
}
.button--secondary {
  background: transparent;
  color: white;
  border: 1px solid rgba(138, 43, 226, 0.12);
}

@media (max-width: 540px) {
  .not-logged {
    padding: 1rem;
    margin: 1rem;
  }
  .not-logged__title {
    font-size: 1.1rem;
  }
  .not-logged__actions {
    gap: 0.5rem;
  }
}/*# sourceMappingURL=not_login_screen.css.map */