/* Certificate Verification Page Styles */
.verify-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 20px 60px;
}

.verify-container {
    max-width: 600px;
    width: 100%;
}

.verify-card {
    background: rgba(30, 41, 59, 0.6);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.verify-header {
    text-align: center;
    margin-bottom: 40px;
}

.verify-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: rgba(56, 189, 248, 0.1);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(56, 189, 248, 0.3);
}

.verify-icon svg {
    width: 35px;
    height: 35px;
    stroke: #38bdf8;
}

.verify-title {
    font-size: 2rem;
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 10px;
    line-height: 1.2;
}

.verify-subtitle {
    color: #94a3b8;
    font-size: 0.95rem;
    line-height: 1.5;
}

.verify-form-group {
    margin-bottom: 25px;
}

.verify-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #cbd5e1;
    margin-bottom: 10px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.verify-input {
    width: 100%;
    padding: 15px;
    font-size: 1.1rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    background: rgba(15, 23, 42, 0.6);
    color: #fff;
    transition: all 0.3s;
    font-family: monospace;
    text-align: center;
}

.verify-input:focus {
    outline: none;
    border-color: #38bdf8;
    background: rgba(15, 23, 42, 0.9);
    box-shadow: 0 0 0 3px rgba(56, 189, 248, 0.1);
}

.verify-input::placeholder {
    color: #475569;
}

.verify-hint {
    font-size: 0.8rem;
    color: #64748b;
    margin-top: 8px;
    text-align: center;
}

.verify-btn {
    width: 100%;
    padding: 15px;
    font-size: 1rem;
    font-weight: 600;
    color: #0f172a;
    background: #38bdf8;
    border: none;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.verify-btn:hover:not(:disabled) {
    background: #7dd3fc;
    transform: translateY(-2px);
}

.verify-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    background: #475569;
}

.verify-progress {
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin: 20px 0;
    display: none;
}

.verify-progress-bar {
    height: 100%;
    background: linear-gradient(90deg, #38bdf8, #818cf8);
    transition: width 0.3s;
}

.verify-result {
    margin-top: 30px;
    padding: 25px;
    background: rgba(15, 23, 42, 0.6);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    display: none;
}

.verify-result-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.verify-result-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.verify-result-icon.success {
    background: rgba(16, 185, 129, 0.2);
}

.verify-result-icon.error {
    background: rgba(239, 68, 68, 0.2);
}

.verify-result-icon svg {
    width: 22px;
    height: 22px;
}

.verify-result-icon.success svg {
    stroke: #34d399;
}

.verify-result-icon.error svg {
    stroke: #f87171;
}

.verify-result-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #f8fafc;
}

.verify-result-message {
    font-size: 0.9rem;
    color: #94a3b8;
    margin-top: 5px;
}

.verify-details {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.verify-detail-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 15px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.verify-detail-label {
    font-size: 0.7rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-weight: 600;
    margin-bottom: 5px;
}

.verify-detail-value {
    font-size: 0.95rem;
    color: #f8fafc;
    font-weight: 600;
}

.verify-badge {
    margin-top: 20px;
    padding: 15px;
    background: rgba(16, 185, 129, 0.15);
    border: 1px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    text-align: center;
    color: #34d399;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

@media (max-width: 640px) {
    .verify-card {
        padding: 30px 20px;
    }

    .verify-title {
        font-size: 1.5rem;
    }

    .verify-details {
        grid-template-columns: 1fr;
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}
