.auth-note {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  margin-top: 12px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 16px;
  background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.auth-note__icon {
  flex: 0 0 42px;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 119, 255, 0.08);
  color: #0077ff;
  font-size: 18px;
}

.auth-note__content {
  flex: 1;
  min-width: 0;
}

.auth-note__text {
  font-size: 14px;
  line-height: 1.45;
  color: #2b2b2b;
  margin-bottom: 10px;
}

.auth-note__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.auth-note__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 36px;
  padding: 0 14px;
  border-radius: 10px;
  text-decoration: none;
  font-size: 13px;
  font-weight: 600;
  transition: 0.2s ease;
  border: 1px solid transparent;
}

.auth-note__btn--primary {
  background: #0077ff;
  color: #fff;
}

.auth-note__btn--primary:hover {
  background: #0067dd;
  color: #fff;
  transform: translateY(-1px);
}

.auth-note__btn--ghost {
  background: transparent;
  border-color: rgba(0, 119, 255, 0.18);
  color: #0077ff;
}

.auth-note__btn--ghost:hover {
  background: rgba(0, 119, 255, 0.08);
  color: #0077ff;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .auth-note {
    align-items: flex-start;
    padding: 12px;
    border-radius: 14px;
  }

  .auth-note__icon {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    border-radius: 10px;
    font-size: 16px;
  }

  .auth-note__text {
    font-size: 13px;
    margin-bottom: 8px;
  }

  .auth-note__btn {
    min-height: 34px;
    padding: 0 12px;
    font-size: 12px;
  }
}