#msgl-login-container {
    background: #fff;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    border: 1px solid #e2e8f0;
}

.msgl-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1a202c;
}

.msgl-desc {
    font-size: 14px;
    color: #4a5568;
    margin-bottom: 15px;
}

.msgl-code-box {
    display: inline-flex;
    align-items: center;
    background: #f7fafc;
    border: 2px dashed #3182ce;
    padding: 10px 20px;
    border-radius: 6px;
    margin-bottom: 15px;
}

#msgl-code-display {
    font-size: 24px;
    font-weight: bold;
    color: #2b6cb0;
    letter-spacing: 2px;
    margin-right: 15px;
    font-family: monospace;
}

#msgl-copy-btn {
    background: #ebf8ff;
    border: 1px solid #90cdf4;
    color: #2b6cb0;
    cursor: pointer;
    padding: 6px 10px;
    border-radius: 4px;
    font-size: 14px;
    transition: all 0.2s;
    font-weight: 600;
}

#msgl-copy-btn:hover {
    background: #bee3f8;
}

.msgl-btn-link {
    display: inline-block;
    background: #1877F2;
    color: #fff;
    text-decoration: none;
    padding: 10px 24px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    transition: background 0.2s;
}

.msgl-btn-link:hover {
    background: #166FE5;
}

#msgl-status-text {
    font-size: 14px;
    color: #718096;
    display: flex;
    align-items: center;
    justify-content: center;
}

.msgl-pulsing::before {
    content: '';
    display: inline-block;
    width: 8px;
    height: 8px;
    background: #ecc94b;
    border-radius: 50%;
    margin-right: 8px;
    animation: msgl-pulse 1.5s infinite;
}

@keyframes msgl-pulse {
    0% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(236, 201, 75, 0.7); }
    70% { transform: scale(1); box-shadow: 0 0 0 6px rgba(236, 201, 75, 0); }
    100% { transform: scale(0.95); box-shadow: 0 0 0 0 rgba(236, 201, 75, 0); }
}
