| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758 |
- // 소셜 로그인 안내 화면 (email-required / account-exists)
- .social-notice {
- max-width: 480px;
- margin: 3rem auto;
- padding: 2rem 1.5rem;
- border: 1px solid var(--border-strong);
- border-radius: 6px;
- text-align: center;
- &__title {
- font-size: 1.25rem;
- font-weight: bold;
- margin-bottom: 1rem;
- }
- &__desc {
- font-size: 0.938rem;
- line-height: 1.6;
- margin-bottom: 0.75rem;
- }
- &__hint {
- font-size: 0.875rem;
- line-height: 1.6;
- color: var(--text-muted);
- margin-bottom: 0.75rem;
- }
- &__actions {
- display: flex;
- flex-direction: column;
- gap: 8px;
- margin-top: 1.5rem;
- }
- &__button {
- display: flex;
- align-items: center;
- justify-content: center;
- width: 100%;
- height: 40px;
- border: 1px solid var(--border-strong);
- border-radius: 4px;
- font-size: 0.938rem;
- font-weight: 600;
- text-decoration: none;
- &:hover {
- filter: brightness(0.96);
- }
- &--primary {
- border-color: transparent;
- background: var(--color-accent);
- color: #fff;
- }
- }
- }
|