.login-page { display: flex; flex-direction: column; align-items: center; justify-content: center; min-height: 80vh; padding: 40px 20px; width: 100%; } .login-header-group { display: flex; flex-direction: row; align-items: center; justify-content: center; gap: 24px; margin-bottom: 48px; width: auto; } .login-logo-img { width: 60px; height: 60px; object-fit: contain; display: block; } .login-x { font-size: 2rem; color: var(--text-tertiary); font-weight: 300; line-height: 1; padding-bottom: 4px; } .login-atproto-icon { color: #3b83f6 !important; display: flex; align-items: center; justify-content: center; } .login-heading { font-size: 1.5rem; font-weight: 700; margin-bottom: 32px; display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 8px; text-align: center; line-height: 1.3; color: var(--text-primary); } .login-help-btn { background: none; border: none; color: var(--text-tertiary); cursor: pointer; padding: 4px; display: flex; align-items: center; transition: color 0.15s; flex-shrink: 0; } .login-help-btn:hover { color: var(--accent); } .login-help-text { background: var(--bg-tertiary); border: 1px solid var(--border); border-radius: var(--radius-md); padding: 16px; margin-bottom: 24px; font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; text-align: center; width: 100%; } .login-help-text code { background: rgba(255, 255, 255, 0.05); padding: 2px 6px; border-radius: var(--radius-sm); font-size: 0.85rem; font-family: var(--font-mono); } .login-form { display: flex; flex-direction: column; gap: 20px; width: 100%; } .login-input-wrapper { position: relative; } .login-input { width: 100%; padding: 14px 16px; background: var(--bg-secondary); border: 1px solid var(--border); border-radius: var(--radius-md); color: var(--text-primary); font-size: 1rem; transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1); box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); } .login-input:focus { outline: none; border-color: var(--accent); box-shadow: 0 0 0 4px var(--accent-subtle); background: var(--bg-primary); } .login-input::placeholder { color: var(--text-tertiary); } .login-suggestions { position: absolute; top: calc(100% + 8px); left: 0; right: 0; background: var(--bg-elevated); border: 1px solid var(--border); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); overflow: hidden; z-index: 100; max-height: 300px; overflow-y: auto; } .login-suggestion { display: flex; align-items: center; gap: 12px; width: 100%; padding: 12px 16px; background: transparent; border: none; cursor: pointer; text-align: left; transition: background 0.1s; border-bottom: 1px solid var(--border); } .login-suggestion:last-child { border-bottom: none; } .login-suggestion:hover, .login-suggestion.selected { background: var(--bg-tertiary); } .login-suggestion-avatar { width: 36px; height: 36px; border-radius: var(--radius-full); background: linear-gradient(135deg, var(--accent), #a855f7); display: flex; align-items: center; justify-content: center; flex-shrink: 0; overflow: hidden; font-size: 0.8rem; font-weight: 600; color: white; } .login-suggestion-avatar img { width: 100%; height: 100%; object-fit: cover; } .login-suggestion-info { display: flex; flex-direction: column; min-width: 0; gap: 2px; } .login-suggestion-name { font-weight: 600; font-size: 0.95rem; color: var(--text-primary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .login-suggestion-handle { font-size: 0.85rem; color: var(--text-secondary); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; } .login-error { padding: 12px 16px; background: rgba(239, 68, 68, 0.1); border: 1px solid rgba(239, 68, 68, 0.2); border-radius: var(--radius-md); color: var(--error); font-size: 0.875rem; text-align: center; } .login-submit { padding: 14px 24px; font-size: 1rem; font-weight: 600; width: 100%; justify-content: center; } .login-avatar-large { width: 80px; height: 80px; border-radius: var(--radius-full); background: linear-gradient(135deg, var(--accent), #a855f7); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; font-weight: 700; font-size: 2rem; color: white; overflow: hidden; box-shadow: var(--shadow-md); } .login-avatar-large img { width: 100%; height: 100%; object-fit: cover; } .login-welcome { font-size: 1.25rem; font-weight: 600; margin-bottom: 32px; text-align: center; color: var(--text-primary); } .login-actions { display: flex; flex-direction: column; gap: 12px; width: 100%; } .morph-container { display: inline-block; color: var(--text-primary); font-weight: 700; transition: opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1), transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s cubic-bezier(0.4, 0, 0.2, 1); white-space: nowrap; vertical-align: bottom; } .morph-out { opacity: 0; transform: translateY(8px) scale(0.95); filter: blur(4px); } .morph-in { opacity: 1; transform: translateY(0) scale(1); filter: blur(0); } .login-legal { margin-top: 24px; font-size: 0.85rem; color: var(--text-tertiary); text-align: center; line-height: 1.5; } .login-legal a { color: var(--accent); text-decoration: underline; text-decoration-color: var(--accent); text-underline-offset: 4px; font-weight: 500; } .login-legal a:hover { text-decoration-thickness: 2px; opacity: 0.8; } @media (max-width: 480px) { .login-heading { font-size: 1.25rem; flex-wrap: wrap; gap: 4px; padding: 0 10px; } .login-header-group { margin-bottom: 32px; gap: 16px; } .login-logo-img { width: 48px; height: 48px; } .login-x { font-size: 1.5rem; } .login-atproto-icon svg { width: 48px; height: 48px; } } .login-divider { display: flex; align-items: center; text-align: center; margin: 24px 0; color: var(--text-tertiary); font-size: 13px; font-weight: 500; text-transform: uppercase; letter-spacing: 0.5px; } .login-divider::before, .login-divider::after { content: ""; flex: 1; border-bottom: 1px solid var(--border); } .login-divider::before { margin-right: 16px; } .login-divider::after { margin-left: 16px; } .login-signup-btn { width: 100%; border: 1px solid var(--border); background: transparent; color: var(--text-primary); transition: all 0.2s; } .login-signup-btn:hover { border-color: var(--accent); background: var(--bg-hover); color: var(--accent); }