.qrcode-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 40px;
    margin: 0;
    flex-wrap: wrap;
}

.qrcode-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    text-align: center;
    max-width: 300px;
}

.qrcode-card img {
    width: 200px;
    height: 200px;
    object-fit: contain;
    margin-bottom: 15px;
    border: 1px solid #eee;
}

.qrcode-card h3 {
    color: var(--secondary);
    margin-bottom: 10px;
}

.test-accounts {
    background: white;
    border-radius: var(--border-radius);
    padding: 20px;
    box-shadow: var(--box-shadow);
    max-width: 400px;
}

.test-accounts h3 {
    color: var(--secondary);
    margin-bottom: 15px;
    text-align: center;
}

.test-accounts-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.test-accounts-table th {
    background: var(--primary);
    color: white;
    padding: 10px;
    text-align: center;
}

.test-accounts-table td {
    padding: 8px 10px;
    border-bottom: 1px solid var(--light-gray);
    text-align: center;
}

.test-accounts-table tr:nth-child(even) {
    background-color: rgba(52, 152, 219, 0.05);
}

.test-accounts-table tr:hover {
    background-color: rgba(52, 152, 219, 0.1);
}

@media (max-width: 768px) {
    .qrcode-container {
        flex-direction: column;
        gap: 20px;
    }

    .test-accounts {
        max-width: 100%;
    }
}

.verification-note {
    width: 100%;
    margin-top: 20px;
    padding: 15px;
    background-color: rgba(52, 152, 219, 0.1);
    border-left: 4px solid var(--primary);
    border-radius: var(--border-radius);
}

.verification-note i {
    color: var(--primary);
    margin-right: 8px;
}

.verification-note p {
    margin: 0;
    color: var(--dark);
    font-size: 0.95rem;
    line-height: 1.5;
}

@media (max-width: 768px) {
    .verification-note {
        margin-top: 15px;
    }
}