/* swiyu-login.css – swiyu Wallet Login Widget für amiko-web */

#swiyu-page {
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 80vh;
    background: #f5f7fa;
}

.swiyu-login {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 32px 28px;
    background: #ffffff;
    border: 1px solid #dce3ea;
    border-radius: 8px;
    max-width: 340px;
    width: 100%;
    text-align: center;
    box-shadow: 0 2px 12px rgba(0,0,0,0.08);
    font-family: inherit;
}

.swiyu-header h3 {
    font-size: 17px;
    font-weight: 600;
    color: #003d73;
    margin: 0 0 12px 0;
}

.swiyu-instructions {
    font-size: 14px;
    color: #555;
    margin: 0 0 18px 0;
    line-height: 1.5;
}

.swiyu-qr-wrapper {
    background: #fff;
    padding: 12px;
    border: 2px solid #003d73;
    border-radius: 6px;
    margin-bottom: 16px;
}

.swiyu-qr-wrapper canvas { display: block; }

.swiyu-deeplink-btn {
    display: inline-block;
    background: #003d73;
    color: #fff !important;
    padding: 9px 20px;
    border-radius: 5px;
    text-decoration: none;
    font-size: 13px;
    margin-bottom: 18px;
}

.swiyu-deeplink-btn:hover { background: #00529e; }

.swiyu-polling {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    color: #999;
}

.swiyu-dot {
    width: 8px;
    height: 8px;
    background: #003d73;
    border-radius: 50%;
    animation: swiyu-pulse 1.4s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes swiyu-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.3; transform: scale(0.75); }
}

.swiyu-spinner {
    width: 36px;
    height: 36px;
    border: 3px solid #dce3ea;
    border-top-color: #003d73;
    border-radius: 50%;
    animation: swiyu-spin 0.8s linear infinite;
    margin-bottom: 14px;
}

@keyframes swiyu-spin { to { transform: rotate(360deg); } }

.swiyu-success .swiyu-checkmark {
    font-size: 52px;
    color: #27ae60;
    margin-bottom: 8px;
    line-height: 1;
}

.swiyu-success h3 { color: #27ae60; }

.swiyu-gln {
    font-size: 12px;
    color: #aaa;
    font-family: monospace;
    margin-top: 4px;
}

.swiyu-error p {
    color: #c0392b;
    font-size: 14px;
    margin-bottom: 14px;
}

.swiyu-error button, #swiyu-retry {
    background: #003d73;
    color: #fff;
    border: none;
    padding: 9px 18px;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
}
