.auth-container {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.auth-card {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 
                0 0 0 1px rgba(255, 165, 0, 0.1) inset;
    max-width: 600px;
    width: 100%;
    border: 1px solid rgba(255, 165, 0, 0.2);
    text-align: center;
}

.auth-logo {
    margin-bottom: 20px;
}

.logo-img {
    max-width: 150px;
    height: auto;
    filter: drop-shadow(0 4px 16px rgba(255, 165, 0, 0.3));
}

.auth-title {
    color: #ffa726;
    font-size: 28px;
    margin-bottom: 10px;
    font-weight: 600;
    text-shadow: 0 2px 10px rgba(255, 165, 0, 0.3);
}

.auth-subtitle {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 30px;
    font-size: 14px;
}

.qr-container {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 20px;
    border-radius: 20px;
    margin: 30px 0;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 165, 0, 0.1);
}

#qrCode {
    width: 100%;
    max-width: 300px;
    height: auto;
    display: block;
    margin: 0 auto;
    border-radius: 12px;
}

.auth-loading {
    padding: 50px;
    color: #ffa726;
}

.auth-spinner {
    border: 4px solid rgba(255, 165, 0, 0.15);
    border-top: 4px solid #ffa726;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto 20px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.status-card {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 20px;
    margin: 20px 0;
    border: 1px solid rgba(255, 165, 0, 0.1);
}

.status-icon {
    font-size: 50px;
    text-align: center;
    margin-bottom: 15px;
    filter: drop-shadow(0 2px 8px rgba(255, 165, 0, 0.3));
}

.status-text {
    text-align: center;
    font-size: 16px;
    margin-bottom: 15px;
}

.status-badge {
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    font-size: 14px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.status-badge.pending {
    background: rgba(255, 165, 0, 0.1);
    border: 1px solid rgba(255, 165, 0, 0.3);
    color: #FFA500;
}

.status-badge.success {
    background: rgba(0, 255, 0, 0.1);
    border: 1px solid rgba(0, 255, 0, 0.3);
    color: #00ff00;
}

.status-badge.error {
    background: rgba(255, 0, 0, 0.1);
    border: 1px solid rgba(255, 0, 0, 0.3);
    color: #ff4444;
}

.did-display {
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 12px;
    margin: 20px 0;
    border: 1px solid rgba(255, 165, 0, 0.2);
}

.did-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
}

.did-value {
    color: #ffa726;
    font-family: 'Courier New', 'SF Mono', Monaco, monospace;
    font-size: 11px;
    word-break: break-all;
    line-height: 1.5;
}

.info-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
}

.info-value {
    color: #fff;
    font-size: 12px;
    font-weight: 600;
}

.session-info {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px;
    border-radius: 10px;
    margin: 15px 0;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(255, 165, 0, 0.1);
}

.verified-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 215, 0, 0.15);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 20px;
    border-radius: 20px;
    border: 1px solid rgba(255, 215, 0, 0.4);
    color: #ffd700;
    font-size: 16px;
    font-weight: 600;
    margin: 10px 0;
    box-shadow: 0 4px 15px rgba(255, 215, 0, 0.2);
}

.portal-announcement {
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 25px;
    border-radius: 16px;
    margin: 25px 0;
    border: 1px solid rgba(255, 215, 0, 0.2);
    text-align: left;
    box-shadow: 0 4px 20px rgba(255, 215, 0, 0.1);
}

.portal-announcement h2 {
    text-align: center;
    text-shadow: 0 2px 15px rgba(255, 215, 0, 0.5);
}

.portal-announcement p {
    color: rgba(255, 255, 255, 0.85);
}

.portal-announcement strong {
    color: #ffd700;
    font-weight: 600;
}

.auth-button {
    background: rgba(255, 165, 0, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    color: #ffa726;
    border: 1px solid rgba(255, 165, 0, 0.3);
    padding: 12px 30px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 20px;
}

.auth-button:hover {
    background: rgba(255, 165, 0, 0.25);
    border-color: rgba(255, 165, 0, 0.5);
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(255, 165, 0, 0.3);
}

.auth-button:active {
    transform: translateY(0);
}

.timestamp {
    color: rgba(255, 255, 255, 0.4);
    font-size: 11px;
    text-align: center;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .auth-card {
        padding: 30px 20px;
    }
    
    .auth-title {
        font-size: 24px;
    }
    
    .logo-img {
        max-width: 100px;
    }
}
