style.scss 999 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  1. // 소셜 로그인 안내 화면 (email-required / account-exists)
  2. .social-notice {
  3. max-width: 480px;
  4. margin: 3rem auto;
  5. padding: 2rem 1.5rem;
  6. border: 1px solid var(--border-strong);
  7. border-radius: 6px;
  8. text-align: center;
  9. &__title {
  10. font-size: 1.25rem;
  11. font-weight: bold;
  12. margin-bottom: 1rem;
  13. }
  14. &__desc {
  15. font-size: 0.938rem;
  16. line-height: 1.6;
  17. margin-bottom: 0.75rem;
  18. }
  19. &__hint {
  20. font-size: 0.875rem;
  21. line-height: 1.6;
  22. color: var(--text-muted);
  23. margin-bottom: 0.75rem;
  24. }
  25. &__actions {
  26. display: flex;
  27. flex-direction: column;
  28. gap: 8px;
  29. margin-top: 1.5rem;
  30. }
  31. &__button {
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. width: 100%;
  36. height: 40px;
  37. border: 1px solid var(--border-strong);
  38. border-radius: 4px;
  39. font-size: 0.938rem;
  40. font-weight: 600;
  41. text-decoration: none;
  42. &:hover {
  43. filter: brightness(0.96);
  44. }
  45. &--primary {
  46. border-color: transparent;
  47. background: var(--color-accent);
  48. color: #fff;
  49. }
  50. }
  51. }