body.auth-page {
    width: 100%; min-height: 100vh; display: flex; align-items: center; justify-content: center;
    background: linear-gradient(180deg, #eaf4fb 0%, #f5f8fa 45%, #f5f8fa 100%);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}
.auth-card {
    background: white; padding: 48px 40px 40px; border-radius: 20px;
    box-shadow: 0 8px 40px rgba(0,30,60,0.08), 0 2px 8px rgba(0,30,60,0.04);
    width: 100%; max-width: 380px; text-align: center;
    animation: authIn 0.35s cubic-bezier(.2,.8,.2,1);
}
@keyframes authIn {
    from { opacity: 0; transform: translateY(12px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}
.auth-logo {
    width: 84px; height: 84px; margin: 0 auto 22px; border-radius: 50%;
    background: linear-gradient(135deg, #63b8ff 0%, #229ed9 100%);
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 18px rgba(34,158,217,0.35);
}
.auth-logo svg { width: 40px; height: 40px; transform: translate(-1px, 1px); }
.auth-card h1 {
    color: #1c2733; font-size: 24px; font-weight: 700; margin: 0 0 6px; letter-spacing: -0.3px;
}
.auth-card p.auth-sub { color: #8b98a5; font-size: 14.5px; margin: 0 0 28px; line-height: 1.4; }
.lang-switch { position: absolute; bottom: 12px; right: 14px; font-size: 11px; color: #c3cad1; }
.lang-switch-label { margin-right: 2px; }
.lang-switch select {
    border: none; background: transparent; color: #c3cad1; font-size: 11px;
    font-family: inherit; cursor: pointer; outline: none; padding: 0;
}
.lang-switch select:hover { color: #8b98a5; }
.phone-row {
    display: flex; align-items: center; border: 1.5px solid #e3e8ec; border-radius: 12px;
    padding: 0 4px 0 14px; margin-bottom: 6px; transition: border-color 0.15s, box-shadow 0.15s; text-align: left;
}
.phone-row:focus-within { border-color: #229ed9; box-shadow: 0 0 0 3px rgba(34,158,217,0.12); }
.phone-row .cc { color: #8b98a5; font-size: 15px; padding-right: 8px; border-right: 1.5px solid #e3e8ec; flex-shrink: 0; }
.phone-row input {
    flex-grow: 1; border: none; outline: none; padding: 14px 10px; font-size: 16px;
    background: transparent; color: #1c2733; min-width: 0;
}
.auth-card input::placeholder { color: #b6c0c9; }
.field-hint { text-align: left; font-size: 12.5px; color: #a3adb6; margin: 6px 2px 22px; }
.auth-card button {
    width: 100%; padding: 14px; border: none;
    background: linear-gradient(135deg, #63b8ff 0%, #229ed9 100%);
    color: white; border-radius: 12px; font-weight: 600; font-size: 15.5px; cursor: pointer;
    transition: transform 0.12s, box-shadow 0.15s; box-shadow: 0 4px 14px rgba(34,158,217,0.3);
}
.auth-card button:hover { box-shadow: 0 6px 18px rgba(34,158,217,0.4); }
.auth-card button:active { transform: scale(0.98); }
.auth-error {
    background: #fdecec; color: #e53e3e; font-size: 13px; padding: 10px 14px;
    border-radius: 10px; margin-bottom: 16px; display: none; text-align: left;
}
.auth-error.show { display: block; }
.auth-card h2 { font-size: 21px; margin: 0 0 6px; color: #1c2733; font-weight: 700; }
.deeplink-card .av-lg { width: 96px; height: 96px; margin: 0 auto 18px; font-size: 32px; }
.deeplink-status { margin-bottom: 26px; }
.code-boxes { display: flex; gap: 10px; justify-content: center; margin-bottom: 22px; }
.code-box {
    width: 52px; height: 60px; border: 1.5px solid #e3e8ec; border-radius: 12px;
    font-size: 24px; font-weight: 700; text-align: center; color: #1c2733;
    outline: none; transition: border-color 0.15s, box-shadow 0.15s; background: transparent;
}
.code-box:focus { border-color: #229ed9; box-shadow: 0 0 0 3px rgba(34,158,217,0.12); }
@media (max-width: 380px) {
    .code-box { width: 44px; height: 52px; font-size: 20px; }
}
.auth-logo--placeholder {
    font-size: 11px; font-weight: 600; color: rgba(255,255,255,0.85);
    text-align: center; line-height: 1.3; padding: 0 8px;
}
.call-box {
    background: #f5f9fc; border: 1.5px solid #e3e8ec; border-radius: 16px;
    padding: 22px 16px; margin: 22px 0 14px;
}
.call-number {
    display: flex; align-items: center; justify-content: center; gap: 8px;
    color: #229ed9; font-size: 23px; font-weight: 700; text-decoration: none; letter-spacing: -0.2px;
}
.call-number svg { width: 21px; height: 21px; flex-shrink: 0; }
.call-pulse { display: flex; justify-content: center; gap: 5px; margin-top: 14px; }
.call-pulse span {
    width: 7px; height: 7px; border-radius: 50%; background: #63b8ff;
    animation: callPulse 1.1s ease-in-out infinite;
}
.call-pulse span:nth-child(2) { animation-delay: 0.15s; }
.call-pulse span:nth-child(3) { animation-delay: 0.3s; }
@keyframes callPulse {
    0%, 60%, 100% { opacity: 0.25; transform: scale(0.8); }
    30% { opacity: 1; transform: scale(1.15); }
}
.call-status { color: #8b98a5; font-size: 13.5px; margin: 0 0 4px; }
.call-error { color: #e53e3e; font-size: 13.5px; text-align: center; margin: 0 0 16px; }
.phone-edit-row { display: flex; align-items: center; justify-content: center; gap: 8px; margin: 0 0 6px; }
.phone-edit-row h2 { margin: 0; }
.edit-number-btn {
    color: #8b98a5; font-size: 15px; text-decoration: none; line-height: 1;
    width: 26px; height: 26px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    transition: background 0.15s, color 0.15s;
}
.edit-number-btn:hover { background: #eef2f5; color: #229ed9; }
